forked from kiss-community/repo
busybox: Set CC fallback once
This commit is contained in:
parent
e8f700827d
commit
9078f19763
@ -5,18 +5,18 @@ for patch in *.patch; do
|
||||
done
|
||||
|
||||
# Remove forced gcc/g++ usage so builds work on gcc-less systems.
|
||||
sed -i "s#= g[c+][c+]#= ${CC:-cc}#g" Makefile
|
||||
sed -i "s#\(\$(CROSS_COMPILE)\)gcc#\1${CC:-cc}#g" Makefile
|
||||
sed -i "s#= g[c+][c+]#= ${CC:=cc}#g" Makefile
|
||||
sed -i "s#\(\$(CROSS_COMPILE)\)gcc#\1${CC}#g" Makefile
|
||||
|
||||
# Ensure that busybox's build system is aware that 'cc' may point
|
||||
# to clang rather than GCC. This is the case in non-GCC systems.
|
||||
case $("${CC:-cc}" --version) in (*clang*)
|
||||
sed -i "s&\(\$(CC),\)clang&\1$CC&g" Makefile.flags
|
||||
case $("$CC" --version) in (*clang*)
|
||||
sed -i "s&\(\$(CC),\)clang&\1${CC}&g" Makefile.flags
|
||||
esac
|
||||
|
||||
# Build and install regular busybox.
|
||||
# This excludes utilities which require 'suid' to function.
|
||||
make CC="${CC:-cc}" HOSTCC="${CC:-cc}"
|
||||
make CC="$CC" HOSTCC="$CC"
|
||||
make CONFIG_PREFIX="$1/usr" install
|
||||
|
||||
# Rename the binary temporarily.
|
||||
@ -25,7 +25,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:-cc}" HOSTCC="${CC:-cc}"
|
||||
make CC="$CC" HOSTCC="$CC"
|
||||
make CONFIG_PREFIX="$1/usr" install
|
||||
|
||||
# Aptly name the busybox binaries.
|
||||
|
Loading…
Reference in New Issue
Block a user