summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-14 08:14:27 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-14 08:14:27 -0400
commit55e2f5e98252b390c10e98f6d33db713fa15b0ed (patch)
treea132e37263542477209fe5755aa1748cc03c09f7 /configure
parentb5cbd549fd00aac164916fa0b6fea65d9dec60bf (diff)
downloadmusl-55e2f5e98252b390c10e98f6d33db713fa15b0ed.tar.gz
fix error in last configure change (lack of escaping)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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