mirror of https://github.com/mirror/busybox.git
- give glob a chance
CROSS_COMPILE=~/foo-bar-baz would fail otherwise See http://www.uclibc.org/lists/buildroot/2008-October/011191.html1_13_stable
parent
01ea971610
commit
2dfd295726
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue