diff options
Diffstat (limited to 'make_single_applets.sh')
-rwxr-xr-x | make_single_applets.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make_single_applets.sh b/make_single_applets.sh index 329a27d32..aa1ace265 100755 --- a/make_single_applets.sh +++ b/make_single_applets.sh | |||
@@ -12,8 +12,9 @@ makeopts="-j9" | |||
12 | test -f include/applets.h || { echo "No include/applets.h file"; exit 1; } | 12 | test -f include/applets.h || { echo "No include/applets.h file"; exit 1; } |
13 | apps="` | 13 | apps="` |
14 | grep ^IF_ include/applets.h \ | 14 | grep ^IF_ include/applets.h \ |
15 | | grep -v ^IF_FEATURE_ \ | 15 | | grep -v '^IF_FEATURE_' \ |
16 | | sed 's/IF_\([A-Z0-9._-]*\)(.*/\1/' \ | 16 | | sed 's/IF_\([A-Z0-9._-]*\)(.*/\1/' \ |
17 | | grep -v '^BUSYBOX$' \ | ||
17 | | sort | uniq | 18 | | sort | uniq |
18 | `" | 19 | `" |
19 | 20 | ||