Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-19 00:45:21 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-19 00:45:21 +0300
commit41e1dc3f8bfea676319f3a69e8556dba2a3a279c (patch)
tree8693490dc9a38ac5a56deef772fd9c22eaee4711 /scripts/trylink
parent4b4b619c9cdc93bf159f159966981940873de098 (diff)
make clean deletes .kernelrelease now
trylink deleted empty linker stderr on success
Diffstat (limited to 'scripts/trylink')
-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 "" "$@"