From 54911bdd325393d1f7f2861f298463c364b45469 Mon Sep 17 00:00:00 2001 From: Hilko Bengen Date: Mon, 22 Aug 2011 20:42:09 +0200 Subject: [PATCH] python: Newer versions want parentheses around arguments of "print" --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b5211fa..228122f 100644 --- a/configure.ac +++ b/configure.ac @@ -657,11 +657,11 @@ AS_IF([test "x$enable_python" != "xno"], if test "x$PYTHON" != "xno"; then AC_MSG_CHECKING([Python prefix]) - PYTHON_PREFIX=`$PYTHON -c "import sys; print sys.prefix"` + PYTHON_PREFIX=`$PYTHON -c "import sys; print (sys.prefix)"` AC_MSG_RESULT([$PYTHON_PREFIX]) AC_MSG_CHECKING([Python version]) - PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"` + PYTHON_VERSION=`$PYTHON -c "import sys; print (sys.version[[0:3]])"` AC_MSG_RESULT([$PYTHON_VERSION]) AC_MSG_CHECKING([for Python include path]) -- 1.8.3.1