From 8cc01b8a8f3de3afd452b880eb92a6376737441e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Mon, 19 Nov 2007 13:31:26 +0100 Subject: Don't quote $CC variable during call, or it will fail when using, for instance 'ccache gcc' as compiler. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`" -- cgit v1.2.3