[gimp] m4macros/pythondev.m4: Python 3 compatibility



commit 77087aba2de9b75077d0a699126e8976674c5378
Author: Daniel "Tracerneo" Ziółkowski <ziolkoneo gmail com>
Date:   Fri May 3 21:02:01 2013 +0200

    m4macros/pythondev.m4: Python 3 compatibility

 m4macros/pythondev.m4 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/m4macros/pythondev.m4 b/m4macros/pythondev.m4
index 4318083..f15e478 100644
--- a/m4macros/pythondev.m4
+++ b/m4macros/pythondev.m4
@@ -14,8 +14,8 @@ else
   py_versiondir=
 fi
 dnl deduce PYTHON_INCLUDES
-py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
-py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
+py_prefix=`$PYTHON -c "import sys; print(sys.prefix)"`
+py_exec_prefix=`$PYTHON -c "import sys; print(sys.exec_prefix)"`
 PYTHON_INCLUDES="-I${py_prefix}/include${py_versiondir}"
 if test "$py_prefix" != "$py_exec_prefix"; then
   PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include${py_versiondir}"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]