git.annexia.org
/
hivex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24e7782
)
hivex: Newer Python versions want parentheses around arguments of "print"
author
Hilko Bengen
<bengen@hilluzination.de>
Mon, 22 Aug 2011 18:45:24 +0000
(20:45 +0200)
committer
Richard W.M. Jones
<rjones@redhat.com>
Wed, 24 Aug 2011 11:56:51 +0000
(12:56 +0100)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
fc11b07
..
9ea944a
100644
(file)
--- 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