소스 검색

correct the check for gcc (previous version failed for cross compilers)

Rich Felker 13 년 전
부모
커밋
bc63e4fa2c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      configure

+ 1 - 1
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*|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