diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/trylink | 2 |
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() { | |||
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 | ||
13 | try "" "$@" | 13 | try "" "$@" |