projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01ea971
)
- give glob a chance
author
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Thu, 23 Oct 2008 13:49:21 +0000
(13:49 -0000)
committer
Bernhard 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
patch
|
blob
|
history
diff --git
a/scripts/trylink
b/scripts/trylink
index 7a4a56dfdf1a5eddb6e0d190aa89a694e61b9f70..7ea1d5cad79227740cca5a2e3d264e908e6cbf88 100755
(executable)
--- a/
scripts/trylink
+++ b/
scripts/trylink
@@
-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() {