diff options
Diffstat (limited to 'busybox.sh')
-rwxr-xr-x | busybox.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/busybox.sh b/busybox.sh index cab248f11..304ac87e7 100755 --- a/busybox.sh +++ b/busybox.sh | |||
@@ -1,4 +1,3 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | ls -1 `sed -n '/^#define/{s/.*BB_// ; s/$/.c/p; }' busybox.def.h | \ | 2 | sed -n -e 's/^#define.*BB_FEATURE.*$//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/;' \ |
3 | tr [:upper:] [:lower:]` 2> /dev/null | sed -e 's/\.c$/\.o/g' | 3 | -e '/^#define/{s/.*bb_//;s/$/.o/p;}' busybox.def.h |
4 | |||