aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcore/busybox/build7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/busybox/build b/core/busybox/build
index 2a3f38c1..766bc487 100755
--- a/core/busybox/build
+++ b/core/busybox/build
@@ -10,11 +10,12 @@ for patch in *.patch; do
patch -p1 < "$patch"
done
-[ "$CPT_CROSS_TRIPLET" ] && CC=$CPT_CROSS_TRIPLET-cc
+[ "$CPT_CROSS_TRIPLET" ] &&
+sed -i "/^CONFIG_CROSS_COMPILER_PREFIX/s/=.*/=\"$CPT_CROSS_TRIPLET-\"/" .config .config-suid
# Build and install regular busybox.
# This excludes utilities which require 'suid' to function.
-make CC="${CC:=gcc}"
+make
make CONFIG_PREFIX="$1/usr" install
# Rename the binary temporarily.
@@ -23,7 +24,7 @@ mv "$1/usr/bin/busybox" "$1/usr/bin/busybox-nosuid"
# Build and install suid busybox.
# This _only_ includes utlities which require 'suid' to function.
cp -f .config-suid .config
-make CC="$CC"
+make
make CONFIG_PREFIX="$1/usr" install
# Aptly name the busybox binaries.