From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXx2p-0006Na-Gi for qemu-devel@nongnu.org; Fri, 04 Sep 2015 15:53:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXx2o-0005NJ-FH for qemu-devel@nongnu.org; Fri, 04 Sep 2015 15:53:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46359) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXx2o-0005NC-A6 for qemu-devel@nongnu.org; Fri, 04 Sep 2015 15:53:06 -0400 From: Markus Armbruster Date: Fri, 4 Sep 2015 21:53:03 +0200 Message-Id: <1441396383-17304-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH] configure: Require Python 2.6 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, peter.maydell@linaro.org 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 --- configure | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/configure b/configure index 21c4089..bce1769 100755 --- a/configure +++ b/configure @@ -1157,18 +1157,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) -- 2.4.3