diff options
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | applets/busybox.sh | 2 | ||||
-rwxr-xr-x | busybox.sh | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -279,7 +279,7 @@ CFLAGS += $(CFLAGS_EXTRA) | |||
279 | all: applet_source_list busybox busybox.links doc | 279 | all: applet_source_list busybox busybox.links doc |
280 | 280 | ||
281 | applet_source_list: busybox.sh Config.h | 281 | applet_source_list: busybox.sh Config.h |
282 | (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@ | 282 | (echo -n "APPLET_SOURCES := "; CC="$(CC)" BB_SRC_DIR="$(BB_SRC_DIR)" $(SHELL) $^) > $@ |
283 | 283 | ||
284 | doc: olddoc | 284 | doc: olddoc |
285 | 285 | ||
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 | ` |
diff --git a/busybox.sh b/busybox.sh index 7c3deb20e..9ab0f4bdb 100755 --- a/busybox.sh +++ b/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 | ` |