config: add size information for three more applets

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2018-12-28 13:37:44 +01:00
parent 1476760600
commit df1ff103c9
4 changed files with 5 additions and 5 deletions

View File

@ -56,9 +56,9 @@ grep ^IF_ include/applets.h \
b="busybox_${app}"
test -f "$b" || continue
file=`grep -lF "bool \"$name" $(find -name '*.c') | xargs`
file=`grep -l "bool \"$name[\" ]" $(find -name '*.c') | xargs`
# A few applets have their CONFIG items in Config.* files, not .c files:
test "$file" || file=`grep -lF "bool \"$name" $(find -name 'Config.*') | xargs`
test "$file" || file=`grep -l "bool \"$name[\" ]" $(find -name 'Config.*') | xargs`
test "$file" || continue
#echo "FILE:'$file'"