summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2012-01-12 13:22:10 -0500
committerDan Winship <danw@gnome.org>2012-01-12 13:26:35 -0500
commit92c58b4372833db6974da73b75d457177f402bb6 (patch)
tree7e7e0e857c55cbb429c8f300a8a0b7d49a3fe9fd
parentb7eeb5abdd188624ad473628f180c4126adfa298 (diff)
downloadpango-92c58b4372833db6974da73b75d457177f402bb6.tar.gz
Fix cross-compiling bug in configure.in
https://bugzilla.gnome.org/show_bug.cgi?id=667799
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index f0299411..a3a9124e 100644
--- a/configure.in
+++ b/configure.in
@@ -124,7 +124,7 @@ dnl
dnl Check for a working C++ compiler, but do not bail out, if none is found.
dnl We use this for an automated test for C++ header correctness.
dnl
-AC_CHECK_PROGS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc)
+AC_CHECK_TOOLS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc)
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE(,[class a { int b; } c;], ,CXX=)