- give glob a chance

CROSS_COMPILE=~/foo-bar-baz would fail otherwise
  See http://www.uclibc.org/lists/buildroot/2008-October/011191.html
This commit is contained in:
Bernhard Reutner-Fischer 2008-10-23 13:49:21 +00:00
parent 01ea971610
commit 2dfd295726

View File

@ -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() {