]> git.mxchange.org Git - simgear.git/commitdiff
SimGear: Properly print compilers in configure.ac
authortimoore <timoore>
Mon, 23 Jul 2007 21:45:11 +0000 (21:45 +0000)
committertimoore <timoore>
Mon, 23 Jul 2007 21:45:11 +0000 (21:45 +0000)
Print $CC and $CXX using the proper configure.ac mechanism

Author: Hans Ulrich Niedermann <hun@n-dimensional.de>
Signed-off-by: Tim Moore <timoore@redhat.com>
configure.ac

index 1c020f19759bd588bfd7985c22b31412c0f9d655..66732599ff454d41ed97f9b901b98f963201e756 100644 (file)
@@ -24,8 +24,10 @@ AC_ARG_WITH(cxx,
   esac
 ])
 
-echo CXX = $CXX
-echo CC = $CC
+AC_MSG_CHECKING([CXX])
+AC_MSG_RESULT([$CXX])
+AC_MSG_CHECKING([CC])
+AC_MSG_RESULT([$CC])
 
 dnl Checks for programs.
 AC_PROG_MAKE_SET