From: Hilko Bengen Date: Mon, 22 Aug 2011 18:45:24 +0000 (+0200) Subject: hivex: Newer Python versions want parentheses around arguments of "print" X-Git-Tag: 1.3.1~1 X-Git-Url: http://git.annexia.org/?p=hivex.git;a=commitdiff_plain;h=1e68bf2069ac39dd6fcf8e99fc2442736335ae4a hivex: Newer Python versions want parentheses around arguments of "print" --- diff --git a/configure.ac b/configure.ac index fc11b07..9ea944a 100644 --- a/configure.ac +++ b/configure.ac @@ -237,8 +237,8 @@ PYTHON_PREFIX= PYTHON_VERSION= if test "x$PYTHON" != "xno"; then - PYTHON_PREFIX=`$PYTHON -c "import sys; print sys.prefix"` - PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"` + PYTHON_PREFIX=`$PYTHON -c "import sys; print(sys.prefix)"` + PYTHON_VERSION=`$PYTHON -c "import sys; print(sys.version[[0:3]])"` AC_MSG_CHECKING([for Python include path]) if test -z "$PYTHON_INCLUDEDIR"; then