From: Rich Felker Date: Mon, 14 May 2012 12:14:27 +0000 (-0400) Subject: fix error in last configure change (lack of escaping) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=55e2f5e98252b390c10e98f6d33db713fa15b0ed;hp=b5cbd549fd00aac164916fa0b6fea65d9dec60bf;p=musl fix error in last configure change (lack of escaping) --- diff --git a/configure b/configure index 902997e3..771840cf 100755 --- 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