From ca91a90ac0665650c012637db75e11e171c97268 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 9 May 2023 08:50:02 -0500 Subject: [PATCH] Fix a missing space. Two command names got glued together so neither was found. Didn't hurt the patched kernel building most architectures, but vanilla didn't build. --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 38d9dcec..8ba3495e 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -107,7 +107,7 @@ done PENDING="expr git tr bash sh gzip awk bison flex make" TOOLCHAIN="as cc ld objdump" -TOOLCHAIN+="bc gcc" # both patched out but not in vanilla yet +TOOLCHAIN+=" bc gcc" # both patched out but not in vanilla yet # Tools needed to build packages for i in $TOOLCHAIN $PENDING $HOST_EXTRA -- 2.39.2