From 5cf8beeb2eb778e2c1cf25020b9a94e5a57d0b95 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 19 Jun 2026 14:22:46 -0500 Subject: [PATCH] Call bash out of the $PATH instead of absolute path. --- scripts/prereq/use.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/prereq/use.sh b/scripts/prereq/use.sh index b1ed7465..e2aa8d33 100755 --- a/scripts/prereq/use.sh +++ b/scripts/prereq/use.sh @@ -13,7 +13,7 @@ fi # Install prerequisites into subdir and prepend to path rm -rf prereq && mkdir -p prereq && cp toybox-prereq prereq/toybox && for i in $(prereq/toybox); do ln -sf toybox prereq/$i; done && -for i in cc as ld strip; do ln -sf $(prereq/toybox which $i) prereq/$i; done && +for i in cc as ld strip bash; do ln -sf $(prereq/toybox which $i) prereq/$i; done && export PATH="$PWD/prereq" && # Are we using a miniconfig? @@ -26,4 +26,4 @@ else fi # Run configure and build -rm -rf generated && scripts/genconfig.sh $ARG && scripts/make.sh +rm -rf generated && bash scripts/genconfig.sh $ARG && bash scripts/make.sh -- 2.39.5