aboutsummaryrefslogtreecommitdiff
path: root/make_single_applets.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make_single_applets.sh')
-rwxr-xr-xmake_single_applets.sh3
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"
12test -f include/applets.h || { echo "No include/applets.h file"; exit 1; } 12test -f include/applets.h || { echo "No include/applets.h file"; exit 1; }
13apps="` 13apps="`
14grep ^IF_ include/applets.h \ 14grep ^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