From e0de726f41d82dfbda16967888bf20b4c6a79f06 Mon Sep 17 00:00:00 2001 From: Brian Fraser Date: Thu, 23 Jan 2014 18:52:39 +0100 Subject: [PATCH] Configure: add missing ; to checkccflags --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index da2483d..a81e3a4 100755 --- 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; -- 2.7.4