aboutsummaryrefslogtreecommitdiffstats
path: root/tools/configure
diff options
context:
space:
mode:
authorYongjie Ren <yongjie.ren@intel.com>2012-03-01 17:23:51 +0000
committerYongjie Ren <yongjie.ren@intel.com>2012-03-01 17:23:51 +0000
commit05bc2e1195adc33fb2e508c6641a2470a6cc3ed6 (patch)
treeb42a130c9df4ad99c6929985a31f589b927a048f /tools/configure
parent192c0b406d19b488fe83b055ced358f41de0ccc5 (diff)
downloadxen-05bc2e1195adc33fb2e508c6641a2470a6cc3ed6.tar.gz
xen-05bc2e1195adc33fb2e508c6641a2470a6cc3ed6.tar.bz2
xen-05bc2e1195adc33fb2e508c6641a2470a6cc3ed6.zip
tools: fix python version checking issue
Even if python version is 2.4.3 which is newer than the required version 2.3, the configure script still raises a version issue. I tested my patch with python 2.6.6 and 2.4.3. It will fix a syntax error like the following. checking for python version >= 2.3 ... Traceback (most recent call last): File "<string>", line 1, in ? TypeError: 'str' object is not callable no configure: error: Python 2.4.3 is too old, minimum required version is 2.3 Signed-off-by: Yongjie Ren <yongjie.ren@intel.com> Acked-by: Roger Pau Monne <roger.pau@entel.upc.edu> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index b1bad1323a..cd4a93de9a 100755
--- a/tools/configure
+++ b/tools/configure
@@ -6127,7 +6127,7 @@ then
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for python version >= 2.3 " >&5
$as_echo_n "checking for python version >= 2.3 ... " >&6; }
-`$PYTHON -c 'import sys; exit(eval("sys.version_info < (2, 3)"))'`
+`$PYTHON -c 'import sys; sys.exit(eval("sys.version_info < (2, 3)"))'`
if test "$?" != "0"
then
python_version=`$PYTHON -V 2>&1`