From 57d62c4c7192f5b1f882c13de1abcde7527c156a Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Wed, 23 Jul 2014 12:45:41 +0200 Subject: [PATCH] build: We only need python 2.x for generating the bindings. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 90bd73b0..c3eb9b51 100644 --- a/configure.ac +++ b/configure.ac @@ -191,7 +191,7 @@ if test "x$HAVE_GCCXML" != "xyes"; then fi # Python is needed for the C++ (and Python) bindings. -PKG_CHECK_MODULES([python], [python3 >= 2.7], +PKG_CHECK_MODULES([python], [python >= 2.7], [CXXFLAGS="$CXXFLAGS $python_CFLAGS"; CXXLIBS="$CXXLIBS $python_LIBS"], [BINDINGS_CXX="no"])