aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 "" "$@"