diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-19 13:31:26 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-19 13:31:26 +0100 |
commit | 8cc01b8a8f3de3afd452b880eb92a6376737441e (patch) | |
tree | 6210f0ef0eb0ab91f81da0265a7eac47c7d28bf9 | |
parent | 4044b92bdaf1edaf68728a36fa1b9c0c0739df4c (diff) | |
download | xine-lib-8cc01b8a8f3de3afd452b880eb92a6376737441e.tar.gz xine-lib-8cc01b8a8f3de3afd452b880eb92a6376737441e.tar.bz2 |
Don't quote $CC variable during call, or it will fail when using, for instance 'ccache gcc' as compiler.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fa4d0479c..1a0b886da 100644 --- a/configure.ac +++ b/configure.ac @@ -377,7 +377,7 @@ dnl checks for compiler characteristics dnl ----------------------------------- if test x"$GCC" = x"yes"; then - GCC_VERSION="`"$CC" -dumpversion`" + GCC_VERSION="`$CC -dumpversion`" GCC_VERSION_MAJOR="`echo "$GCC_VERSION" | cut -d '.' -f1`" GCC_VERSION_MINOR="`echo "$GCC_VERSION" | cut -d '.' -f2`" GCC_VERSION_PATCHLEVEL="`echo "$GCC_VERSION" | cut -d '.' -f3`" |