]> Git Repo - qemu.git/commitdiff
configure: Require Python 2.6
authorMarkus Armbruster <[email protected]>
Fri, 4 Sep 2015 19:53:03 +0000 (21:53 +0200)
committerPaolo Bonzini <[email protected]>
Mon, 12 Oct 2015 16:29:25 +0000 (18:29 +0200)
RHEL-6 and SLES-11 provide Python 2.6.  It'll also work on OS X back
to 10.6.

Signed-off-by: Markus Armbruster <[email protected]>
Message-Id: <1441396383[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
configure

index f08327e10e61f2660f7835f184dfd9929b75a1a0..913ae4a0ecae4f855e14063c02b63cc03f491524 100755 (executable)
--- a/configure
+++ b/configure
@@ -1166,18 +1166,14 @@ fi
 
 # Note that if the Python conditional here evaluates True we will exit
 # with status 1 which is a shell 'false' value.
-if ! $python -c 'import sys; sys.exit(sys.version_info < (2,4) or sys.version_info >= (3,))'; then
-  error_exit "Cannot use '$python', Python 2.4 or later is required." \
+if ! $python -c 'import sys; sys.exit(sys.version_info < (2,6) or sys.version_info >= (3,))'; then
+  error_exit "Cannot use '$python', Python 2.6 or later is required." \
       "Note that Python 3 or later is not yet supported." \
       "Use --python=/path/to/python to specify a supported Python."
 fi
 
-# The -B switch was added in Python 2.6.
-# If it is supplied, compiled files are not written.
-# Use it for Python versions which support it.
-if $python -B -c 'import sys; sys.exit(0)' 2>/dev/null; then
-  python="$python -B"
-fi
+# Suppress writing compiled files
+python="$python -B"
 
 case "$cpu" in
     ppc)
This page took 0.033918 seconds and 4 git commands to generate.