diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-09-26 06:20:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-09-26 06:20:54 +0000 |
commit | 63ae66198d3f2d51d077a8fbcdaf1e5fe80a210f (patch) | |
tree | 9077da77a60c9e12804427b4ebeb288025414eec /applets | |
parent | b67adb0d83f48b0505f08fc01d70545aa0dc38d5 (diff) | |
download | busybox-w32-63ae66198d3f2d51d077a8fbcdaf1e5fe80a210f.tar.gz busybox-w32-63ae66198d3f2d51d077a8fbcdaf1e5fe80a210f.tar.bz2 busybox-w32-63ae66198d3f2d51d077a8fbcdaf1e5fe80a210f.zip |
use the pedantically correct compiler for preprocessing
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/busybox.sh | 2 |
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 | |||
4 | export LC_CTYPE=POSIX | 4 | export LC_CTYPE=POSIX |
5 | 5 | ||
6 | RAW=` \ | 6 | RAW=` \ |
7 | gcc -E -dM ${1:-Config.h} | \ | 7 | $CC -E -dM ${1:-Config.h} | \ |
8 | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ | 8 | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ |
9 | | tr A-Z a-z | sort | 9 | | tr A-Z a-z | sort |
10 | ` | 10 | ` |