aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/trylink5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/trylink b/scripts/trylink
index 7a4a56dfd..7ea1d5cad 100755
--- a/scripts/trylink
+++ b/scripts/trylink
@@ -41,9 +41,8 @@ try() {
41 printf "%s\n" "$*" >>$EXE.out 41 printf "%s\n" "$*" >>$EXE.out
42 printf "%s\n" "==========" >>$EXE.out 42 printf "%s\n" "==========" >>$EXE.out
43 $debug && echo "Trying: $*" 43 $debug && echo "Trying: $*"
44 "$@" >>$EXE.out 2>&1 44 $@ >>$EXE.out 2>&1
45 exitcode=$? 45 return $?
46 return $exitcode
47} 46}
48 47
49check_cc() { 48check_cc() {