mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 11:45:13 +00:00
fix error in last configure change (lack of escaping)
This commit is contained in:
parent
b5cbd549fd
commit
55e2f5e982
2
configure
vendored
2
configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user