fix error in last configure change (lack of escaping)
authorRich Felker <dalias@aerifal.cx>
Mon, 14 May 2012 12:14:27 +0000 (08:14 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 14 May 2012 12:14:27 +0000 (08:14 -0400)
configure

index 902997e..771840c 100755 (executable)
--- a/configure
+++ b/configure
@@ -148,7 +148,7 @@ test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
 #
 if test -z "$wrapper" ; then
 printf "checking whether compiler is gcc... "
-if fnmatch '*(GCC)*' "$("$CC" --version 2>/dev/null)" ; then
+if fnmatch '*\(GCC\)*' "$("$CC" --version 2>/dev/null)" ; then
 echo yes
 printf "checking whether to build musl-gcc wrapper... "
 wrapper=yes