projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
841f64f
)
Configure: add missing ; to checkccflags
author
Brian Fraser
<fraserbn@gmail.com>
Thu, 23 Jan 2014 17:52:39 +0000
(18:52 +0100)
committer
Brian Fraser
<fraserbn@gmail.com>
Thu, 23 Jan 2014 17:52:39 +0000
(18:52 +0100)
Configure
patch
|
blob
|
history
diff --git
a/Configure
b/Configure
index
da2483d
..
a81e3a4
100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-5237,7
+5237,7
@@
esac
checkccflag='check=$1; flag=$2; callback=$3;
echo " ";
echo "Checking if your compiler accepts $flag" 2>&1;
-[ "X$sysroot" != "X" ] && echo "For sysroot = $sysroot"
+[ "X$sysroot" != "X" ] && echo "For sysroot = $sysroot"
;
echo "int main(void) { return 0; }" > gcctest.c;
if $cc $_sysroot -O2 $flag -o gcctest gcctest.c 2>gcctest.out && $run ./gcctest; then
echo "Yes, it does." 2>&1;