diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b6f5ba0..87fcd78 100644 --- a/configure.in +++ b/configure.in @@ -2771,12 +2771,15 @@ PARALLEL=${PARALLEL:-no} dnl Compiler with version information. This consists of the full path dnl name of the compiler and the reported version number. AC_SUBST([CC_VERSION]) -if `echo $CC | grep / >/dev/null 2>&1`; then +dnl Strip anything that looks like a flag off of $CC +CC_NOFLAGS=`echo $CC | sed 's/ -.*//'` + +if `echo $CC_NOFLAGS | grep ^/ >/dev/null 2>&1`; then CC_VERSION="$CC" else CC_VERSION="$CC"; for x in `echo $PATH | sed -e 's/:/ /g'`; do - if test -x $x/$CC; then + if test -x $x/$CC_NOFLAG; then CC_VERSION="$x/$CC" break fi |