diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-05-14 08:14:27 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-05-14 08:14:27 -0400 |
commit | 55e2f5e98252b390c10e98f6d33db713fa15b0ed (patch) | |
tree | a132e37263542477209fe5755aa1748cc03c09f7 | |
parent | b5cbd549fd00aac164916fa0b6fea65d9dec60bf (diff) | |
download | musl-55e2f5e98252b390c10e98f6d33db713fa15b0ed.tar.gz musl-55e2f5e98252b390c10e98f6d33db713fa15b0ed.tar.xz musl-55e2f5e98252b390c10e98f6d33db713fa15b0ed.zip |
fix error in last configure change (lack of escaping)
-rwxr-xr-x | configure | 2 |
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 |