- give glob a chance
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 23 Oct 2008 13:49:21 +0000 (13:49 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 23 Oct 2008 13:49:21 +0000 (13:49 -0000)
  CROSS_COMPILE=~/foo-bar-baz would fail otherwise
  See http://www.uclibc.org/lists/buildroot/2008-October/011191.html

scripts/trylink

index 7a4a56dfdf1a5eddb6e0d190aa89a694e61b9f70..7ea1d5cad79227740cca5a2e3d264e908e6cbf88 100755 (executable)
@@ -41,9 +41,8 @@ try() {
     printf "%s\n" "$*" >>$EXE.out
     printf "%s\n" "==========" >>$EXE.out
     $debug && echo "Trying: $*"
-    "$@" >>$EXE.out 2>&1
-    exitcode=$?
-    return $exitcode
+    $@ >>$EXE.out 2>&1
+    return $?
 }
 
 check_cc() {