diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 13:37:44 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 13:37:44 +0100 |
commit | df1ff103c9e0496e7de9528500cddff36701609e (patch) | |
tree | 53f77e9b20a663f6c78c35f0cf80ba41554cb3dd /size_single_applets.sh | |
parent | 1476760600eff7c51c78b0ba02f1b08558178289 (diff) | |
download | busybox-w32-df1ff103c9e0496e7de9528500cddff36701609e.tar.gz busybox-w32-df1ff103c9e0496e7de9528500cddff36701609e.tar.bz2 busybox-w32-df1ff103c9e0496e7de9528500cddff36701609e.zip |
config: add size information for three more applets
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'size_single_applets.sh')
-rwxr-xr-x | size_single_applets.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/size_single_applets.sh b/size_single_applets.sh index 6df5d7bee..4b70e761f 100755 --- a/size_single_applets.sh +++ b/size_single_applets.sh | |||
@@ -56,9 +56,9 @@ grep ^IF_ include/applets.h \ | |||
56 | b="busybox_${app}" | 56 | b="busybox_${app}" |
57 | test -f "$b" || continue | 57 | test -f "$b" || continue |
58 | 58 | ||
59 | file=`grep -lF "bool \"$name" $(find -name '*.c') | xargs` | 59 | file=`grep -l "bool \"$name[\" ]" $(find -name '*.c') | xargs` |
60 | # A few applets have their CONFIG items in Config.* files, not .c files: | 60 | # A few applets have their CONFIG items in Config.* files, not .c files: |
61 | test "$file" || file=`grep -lF "bool \"$name" $(find -name 'Config.*') | xargs` | 61 | test "$file" || file=`grep -l "bool \"$name[\" ]" $(find -name 'Config.*') | xargs` |
62 | test "$file" || continue | 62 | test "$file" || continue |
63 | #echo "FILE:'$file'" | 63 | #echo "FILE:'$file'" |
64 | 64 | ||