summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHilko Bengen <bengen@hilluzination.de>2011-08-22 20:45:24 +0200
committerRichard W.M. Jones <rjones@redhat.com>2011-08-24 12:56:51 +0100
commit1e68bf2069ac39dd6fcf8e99fc2442736335ae4a (patch)
tree1a6d1c74c9c629592db046648bcbf73cdcda492a
parent24e778286a2d684cb08afb29f5c0e48b2b312e7e (diff)
downloadhivex-1e68bf2069ac39dd6fcf8e99fc2442736335ae4a.tar.gz
hivex-1e68bf2069ac39dd6fcf8e99fc2442736335ae4a.tar.xz
hivex-1e68bf2069ac39dd6fcf8e99fc2442736335ae4a.zip
hivex: Newer Python versions want parentheses around arguments of "print"
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
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