bd7e079f56
Hopefully we're at least close to the right stuff for handling python2 vs python3 right with these changes. OBS-URL: https://build.opensuse.org/request/show/569754 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=384
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From b4a1eeb9e139d9e20a19b4c2aea3d69bef7a8fec Mon Sep 17 00:00:00 2001
|
|
From: "Daniel P. Berrange" <berrange@redhat.com>
|
|
Date: Mon, 15 Jan 2018 17:40:53 -0700
|
|
Subject: [PATCH] configure: allow use of python 3
|
|
|
|
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
|
|
---
|
|
configure | 5 ++---
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/configure b/configure
|
|
index 01e1d15fa4..46e2853ee3 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1573,9 +1573,8 @@ 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,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." \
|
|
+if ! $python -c 'import sys; sys.exit(sys.version_info < (2,6))'; then
|
|
+ error_exit "Cannot use '$python', Python 2 >= 2.6 or Python 3 is required." \
|
|
"Use --python=/path/to/python to specify a supported Python."
|
|
fi
|
|
|