Configure: add missing ; to checkccflags
authorBrian Fraser <fraserbn@gmail.com>
Thu, 23 Jan 2014 17:52:39 +0000 (18:52 +0100)
committerBrian Fraser <fraserbn@gmail.com>
Thu, 23 Jan 2014 17:52:39 +0000 (18:52 +0100)
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;