From e9fd69c8e8d70f2a7c2f367a4704cb60a8df6800 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 8 Oct 2007 22:16:14 +0000 Subject: make "individual applets" build less noisy. add *.tmp to list of files deleted by make mrproper. --- scripts/trylink | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/trylink') diff --git a/scripts/trylink b/scripts/trylink index d6538f12e..6905f8626 100755 --- a/scripts/trylink +++ b/scripts/trylink @@ -151,10 +151,11 @@ if test "$CONFIG_FEATURE_SHARED_BUSYBOX" = y; then fi if test "$CONFIG_FEATURE_INDIVIDUAL" = y; then + echo "Linking individual applets against libbusybox (see $sharedlib_dir/*)" gcc -DNAME_MAIN_CNAME -E -include include/autoconf.h include/applets.h \ | grep -v "^#" \ | grep -v "^$" \ - > applet.lst + > applet_lst.tmp while read name main junk; do echo "\ @@ -183,9 +184,8 @@ int main(int argc, char **argv) } rm -- "$sharedlib_dir/applet.c" $EXE.out strip -s --remove-section=.note --remove-section=.comment $EXE - echo "applet linked against libbusybox: $EXE" - done