diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-29 16:53:47 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-29 16:53:47 +0000 |
commit | f00680eb595f9601ff3d2a9c23846afaa60b2389 (patch) | |
tree | 022ef814f2b03011814e994ec5e80f431a0aea1f /applets | |
parent | 0bf67e849a8846bd5207b7f17b186ddba931c7fa (diff) | |
download | busybox-f00680eb595f9601ff3d2a9c23846afaa60b2389.tar.gz |
- use HOSTCC instead of a hardcoded cc
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/busybox.mkll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll index b30ac8d92..2ad23f959 100755 --- a/applets/busybox.mkll +++ b/applets/busybox.mkll @@ -12,7 +12,7 @@ export LC_CTYPE=POSIX CONFIG_H=${1:-include/bb_config.h} APPLETS_H=${2:-include/applets.h} -gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | +$HOSTCC -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | awk '/^[ \t]*LINK/{ dir=substr($2,8) gsub("_","/",dir) |