summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2014-03-15 12:40:32 +0100
committerThibault Saunier <tsaunier@gnome.org>2014-03-15 17:39:06 +0100
commit2644bf83bb91d28b3ffcc941e1d4db1f47d52a48 (patch)
treec4c6fd9568829b87b0e1449a6fb965ac4ee89c6a
parent8cc4bda46a3d51f0e649c039514726a9f23e2292 (diff)
We actually depend on python 2.5 not 2.7
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 43e26f8..dfe4cfd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -54,12 +54,12 @@ dnl check if the compiler supports '-c' and '-o' options
AM_PROG_CC_C_O
dnl check for python
-dnl AM_PATH_PYTHON(2.5)
+dnl AM_PATH_PYTHON(2.7)
AM_PATH_PYTHON
-AC_MSG_CHECKING(for python >= 2.5)
+AC_MSG_CHECKING(for python >= 2.7)
prog="
import sys, string
-minver = (2,5,0,'final',0)
+minver = (2,7,0,'final',0)
if sys.version_info < minver:
sys.exit(1)
sys.exit(0)"