From 55e2f5e98252b390c10e98f6d33db713fa15b0ed Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 14 May 2012 08:14:27 -0400 Subject: fix error in last configure change (lack of escaping) --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') 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 -- cgit v1.2.1