diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-03-17 01:12:41 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-03-17 01:12:41 +0000 |
commit | 6273f655c8e5a1b7233f94fd606ceaed95b9c7a7 (patch) | |
tree | ad754ea972e52bb21db4323d916bacfb4f1c3f07 /busybox.sh | |
parent | 161220c4985b8c05a57f09b2693a6cad74d2e81d (diff) | |
download | busybox-w32-6273f655c8e5a1b7233f94fd606ceaed95b9c7a7.tar.gz busybox-w32-6273f655c8e5a1b7233f94fd606ceaed95b9c7a7.tar.bz2 busybox-w32-6273f655c8e5a1b7233f94fd606ceaed95b9c7a7.zip |
Several fixes.
-Erik
Diffstat (limited to 'busybox.sh')
-rwxr-xr-x | busybox.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/busybox.sh b/busybox.sh index 304ac87e7..c4e241f84 100755 --- a/busybox.sh +++ b/busybox.sh | |||
@@ -1,3 +1,10 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | sed -n -e 's/^#define.*BB_FEATURE.*$//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/;' \ | 2 | |
3 | -e '/^#define/{s/.*bb_//;s/$/.o/p;}' busybox.def.h | 3 | # I added in the extra "ls" so only source files that |
4 | # actually exist will show up in the compile list. | ||
5 | ls -1 ` \ | ||
6 | cpp busybox.def.h -dM | \ | ||
7 | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ | ||
8 | | tr [:upper:] [:lower:] | sort | ||
9 | ` 2>/dev/null | sed -e 's/\.c$/\.o/g' | ||
10 | |||