aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-09-26 06:20:54 +0000
committerEric Andersen <andersen@codepoet.org>2001-09-26 06:20:54 +0000
commit63ae66198d3f2d51d077a8fbcdaf1e5fe80a210f (patch)
tree9077da77a60c9e12804427b4ebeb288025414eec /applets
parentb67adb0d83f48b0505f08fc01d70545aa0dc38d5 (diff)
downloadbusybox-63ae66198d3f2d51d077a8fbcdaf1e5fe80a210f.tar.gz
use the pedantically correct compiler for preprocessing
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/busybox.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/busybox.sh b/applets/busybox.sh
index 7c3deb20e..9ab0f4bdb 100755
--- a/applets/busybox.sh
+++ b/applets/busybox.sh
@@ -4,7 +4,7 @@ export LC_ALL=POSIX
export LC_CTYPE=POSIX
RAW=` \
- gcc -E -dM ${1:-Config.h} | \
+ $CC -E -dM ${1:-Config.h} | \
sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
| tr A-Z a-z | sort
`