aboutsummaryrefslogtreecommitdiff
path: root/scripts
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 /scripts
parent4b4b619c9cdc93bf159f159966981940873de098 (diff)
downloadbusybox-41e1dc3f8bfea676319f3a69e8556dba2a3a279c.tar.gz
make clean deletes .kernelrelease now
trylink deleted empty linker stderr on success
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/trylink2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/trylink b/scripts/trylink
index 1cd50c6ed..52931b01c 100755
--- a/scripts/trylink
+++ b/scripts/trylink
@@ -7,7 +7,7 @@ try() {
shift
$debug && echo "Trying: $* $added"
"$@" $added >busybox.map 2>busybox_ld.err \
- && exit 0
+ && { rm busybox_ld.err; exit 0; }
}
try "" "$@"