busybox: Use portable cc. Closes #157

This commit is contained in:
Dylan Araps 2020-02-23 23:45:05 +02:00
parent 2b173b4886
commit 8ddbcb76e4
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ done
# Build and install regular busybox.
# This excludes utilities which require 'suid' to function.
make CC="${CC:-gcc}"
make CC="${CC:-cc}" HOSTCC="${CC:-cc}"
make CONFIG_PREFIX="$1/usr" install
# Rename the binary temporarily.
@ -15,7 +15,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:-gcc}"
make CC="${CC:-cc}" HOSTCC="${CC:-cc}"
make CONFIG_PREFIX="$1/usr" install
# Aptly name the busybox binaries.