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