aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-18 21:45:21 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-18 21:45:21 +0000
commit41e1dc3f8bfea676319f3a69e8556dba2a3a279c (patch)
tree8693490dc9a38ac5a56deef772fd9c22eaee4711
parent4b4b619c9cdc93bf159f159966981940873de098 (diff)
downloadbusybox-w32-41e1dc3f8bfea676319f3a69e8556dba2a3a279c.tar.gz
busybox-w32-41e1dc3f8bfea676319f3a69e8556dba2a3a279c.tar.bz2
busybox-w32-41e1dc3f8bfea676319f3a69e8556dba2a3a279c.zip
make clean deletes .kernelrelease now
trylink deleted empty linker stderr on success
-rw-r--r--Makefile2
-rwxr-xr-xscripts/trylink2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5bbd872ea..3e9426084 100644
--- a/Makefile
+++ b/Makefile
@@ -906,7 +906,7 @@ endif # CONFIG_MODULES
906 906
907# Directories & files removed with 'make clean' 907# Directories & files removed with 'make clean'
908CLEAN_DIRS += $(MODVERDIR) 908CLEAN_DIRS += $(MODVERDIR)
909CLEAN_FILES += busybox* System.map \ 909CLEAN_FILES += busybox* System.map .kernelrelease \
910 .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map 910 .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map
911 911
912# Directories & files removed with 'make mrproper' 912# Directories & files removed with 'make mrproper'
diff --git a/scripts/trylink b/scripts/trylink
index 1cd50c6ed..52931b01c 100755
--- a/scripts/trylink
+++ b/scripts/trylink
@@ -7,7 +7,7 @@ try() {
7 shift 7 shift
8 $debug && echo "Trying: $* $added" 8 $debug && echo "Trying: $* $added"
9 "$@" $added >busybox.map 2>busybox_ld.err \ 9 "$@" $added >busybox.map 2>busybox_ld.err \
10 && exit 0 10 && { rm busybox_ld.err; exit 0; }
11} 11}
12 12
13try "" "$@" 13try "" "$@"