Skip to content

Commit

Permalink
- give glob a chance
Browse files Browse the repository at this point in the history
  CROSS_COMPILE=~/foo-bar-baz would fail otherwise
  See http://www.uclibc.org/lists/buildroot/2008-October/011191.html
  • Loading branch information
aldot committed Oct 23, 2008
1 parent 01ea971 commit 2dfd295
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/trylink
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 2dfd295

Please sign in to comment.