From 3d072acfd15b2c5ffe76ebee19d21e100b150d0c Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 9 Jan 2023 00:58:45 -0600 Subject: [PATCH] Bump some changes to next release. The date tests need a patched musl but I'm not rebuilding the cross compilers yet. And I have patches removing the need for bc and gcc from the kernel build, but if you're building vanilla you still need them. --- scripts/install.sh | 5 +++-- tests/date.test | 0 2 files changed, 3 insertions(+), 2 deletions(-) mode change 100755 => 100644 tests/date.test diff --git a/scripts/install.sh b/scripts/install.sh index bd9b82e0..75619a9d 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -106,8 +106,9 @@ done # The following are commands toybox should provide, but doesn't yet. # 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" # bc -TOOLCHAIN="as cc ld objdump" # gcc +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 # Tools needed to build packages for i in $TOOLCHAIN $PENDING $HOST_EXTRA diff --git a/tests/date.test b/tests/date.test old mode 100755 new mode 100644 -- 2.39.2