From 658189ac5357ba7163b042e532c1ed3cc791fc2a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 1 Nov 2024 17:25:12 -0500 Subject: [PATCH] Allow TOOLCHAIN= to list additional host commands for airlock_install. --- scripts/install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7c90036e..22bb472c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -106,8 +106,7 @@ done # For now symlink the host version. This list must go away by 1.0. PENDING="expr git tr bash sh gzip awk bison flex make ar" -TOOLCHAIN="as cc ld objdump" -TOOLCHAIN+=" bc gcc" # both patched out but not in vanilla yet +TOOLCHAIN+=" as cc ld objdump bc gcc" # Tools needed to build packages for i in $TOOLCHAIN $PENDING $HOST_EXTRA -- 2.39.5