From df1ff103c9e0496e7de9528500cddff36701609e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 28 Dec 2018 13:37:44 +0100 Subject: config: add size information for three more applets Signed-off-by: Denys Vlasenko --- size_single_applets.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'size_single_applets.sh') 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 \ 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'" -- cgit v1.2.3