aboutsummaryrefslogtreecommitdiff
path: root/scripts/make.sh
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-11-02 08:32:21 -0600
committerRob Landley <rob@landley.net>2015-11-02 08:32:21 -0600
commitd20b9ff3ee0f1014a740baed908dc0a08c646fb6 (patch)
treec575145fa158e4acc746ae1e17db76753263450e /scripts/make.sh
parent539f8c8b56729d1b6562ade260bf6c44d1f9637b (diff)
downloadtoybox-d20b9ff3ee0f1014a740baed908dc0a08c646fb6.tar.gz
Don't pass target $CFLAGS to host builds (telling x86 compiler to be big-endian
seldom ends well). Instead add -DBUILD_FOR_HOST to $HOSTCC and wrap #ifdefs around problematic (smack) includes from toys.h.
Diffstat (limited to 'scripts/make.sh')
-rwxr-xr-xscripts/make.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make.sh b/scripts/make.sh
index a724d5f7..3dd4f90c 100755
--- a/scripts/make.sh
+++ b/scripts/make.sh
@@ -213,7 +213,7 @@ fi
echo "generated/help.h"
if [ generated/config2help -ot scripts/config2help.c ]
then
- do_loudly $HOSTCC scripts/config2help.c $CFLAGS -I . lib/xwrap.c lib/llist.c \
+ do_loudly $HOSTCC scripts/config2help.c -I . lib/xwrap.c lib/llist.c \
lib/lib.c lib/portability.c -o generated/config2help || exit 1
fi
generated/config2help Config.in $KCONFIG_CONFIG > generated/help.h || exit 1