[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] 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@xxxxxxxxx> -- tools/m4/python_version.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -r a4d93d0e0df2 tools/m4/python_version.m4 --- a/tools/m4/python_version.m4 Wed Feb 22 14:33:24 2012 +0000 +++ b/tools/m4/python_version.m4 Fri Feb 24 22:08:53 2012 -0500 @@ -1,6 +1,6 @@ AC_DEFUN([AX_CHECK_PYTHON_VERSION], [AC_MSG_CHECKING([for python version >= $1.$2 ]) -`$PYTHON -c 'import sys; exit(eval("sys.version_info < ($1, $2)"))'` +`$PYTHON -c 'import sys; sys.exit(eval("sys.version_info < ($1, $2)"))'` if test "$?" != "0" then python_version=`$PYTHON -V 2>&1` Best Regards, Yongjie Ren (Jay) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |