aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-08 22:16:14 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-08 22:16:14 +0000
commite9fd69c8e8d70f2a7c2f367a4704cb60a8df6800 (patch)
tree9b6b95ec7e7e221273bb287e22be6d975cb25b25
parentd419a9f83059f0807b82cdbc7be8e3e8f343707e (diff)
downloadbusybox-e9fd69c8e8d70f2a7c2f367a4704cb60a8df6800.tar.gz
make "individual applets" build less noisy.
add *.tmp to list of files deleted by make mrproper.
-rw-r--r--Makefile2
-rwxr-xr-xscripts/trylink6
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5cc4ab291..6808e7d0f 100644
--- a/Makefile
+++ b/Makefile
@@ -970,7 +970,7 @@ distclean: mrproper
@find $(srctree) $(RCS_FIND_IGNORE) \
\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
- -o -name '.*.rej' -o -size 0 \
+ -o -name '.*.rej' -o -name '*.tmp' -o -size 0 \
-o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
-type f -print | xargs rm -f
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 <applet.lst
+ done <applet_lst.tmp
fi
# libbusybox.so is needed only for -lbusybox at link time,