summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Horn <max@quendi.de>2012-12-12 21:33:53 +0100
committerErik de Castro Lopo <erikd@mega-nerd.com>2012-12-13 08:12:30 +1100
commitcdcb88bdc9c3674901d5416c095fc0241e28ea5b (patch)
tree867816b812dc5ef576b7c026901d933c1b4a4fe5 /configure.ac
parent66c0a581d2ee22e65aaf70d50b17cfefc6287f24 (diff)
downloadflac-cdcb88bdc9c3674901d5416c095fc0241e28ea5b.tar.gz
configure: always print ac_cv_c_compiler_gnu
Previously, we only printed whether the used compiler was detected as gcc if the answer was positive. Now we always print the result (but the GCC version still is only printed when we are using GCC) Signed-off-by: Max Horn <max@quendi.de>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 1c936b3f..abc16409 100644
--- a/configure.ac
+++ b/configure.ac
@@ -474,7 +474,7 @@ AC_MSG_RESULT([
Host OS : ............................. ${host_os}
])
-if test x$ac_cv_c_compiler_gnu = xyes ; then
echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}"
+if test x$ac_cv_c_compiler_gnu = xyes ; then
echo " GCC version : ......................... ${GCC_VERSION}"
- fi
+fi