mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
configure: use our ordered list of python names
Since it seems it's prefered now to use python3 in path name, prefer this name as first in the list.
This commit is contained in:
parent
2df7ef58a5
commit
9885c9b43a
@ -1,5 +1,6 @@
|
|||||||
Version 2.03.11 -
|
Version 2.03.11 -
|
||||||
==================================
|
==================================
|
||||||
|
Configure use own python path name order to prefer using python3.
|
||||||
Add configure --enable-editline support as an alternative to readline.
|
Add configure --enable-editline support as an alternative to readline.
|
||||||
Enhance reporting and error handling when creating thin volumes.
|
Enhance reporting and error handling when creating thin volumes.
|
||||||
Enable vgsplit for VDO volumes.
|
Enable vgsplit for VDO volumes.
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -11881,7 +11881,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
|
|||||||
$as_echo_n "(cached) " >&6
|
$as_echo_n "(cached) " >&6
|
||||||
else
|
else
|
||||||
|
|
||||||
for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
|
for am_cv_pathless_PYTHON in python3 python2 python python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
|
||||||
test "$am_cv_pathless_PYTHON" = none && break
|
test "$am_cv_pathless_PYTHON" = none && break
|
||||||
prog="import sys
|
prog="import sys
|
||||||
# split strings by '.' and convert to numeric. Append some zeros
|
# split strings by '.' and convert to numeric. Append some zeros
|
||||||
|
@ -1224,6 +1224,9 @@ if test "$BUILD_LVMDBUSD" = yes; then
|
|||||||
unset am_cv_pathless_PYTHON ac_cv_path_PYTHON am_cv_python_platform
|
unset am_cv_pathless_PYTHON ac_cv_path_PYTHON am_cv_python_platform
|
||||||
unset am_cv_python_pythondir am_cv_python_version am_cv_python_pyexecdir
|
unset am_cv_python_pythondir am_cv_python_version am_cv_python_pyexecdir
|
||||||
unset ac_cv_path_PYTHON_CONFIG ac_cv_path_ac_pt_PYTHON_CONFIG
|
unset ac_cv_path_PYTHON_CONFIG ac_cv_path_ac_pt_PYTHON_CONFIG
|
||||||
|
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],[ python3 python2 python dnl
|
||||||
|
python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 dnl
|
||||||
|
python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 ])
|
||||||
AM_PATH_PYTHON([3])
|
AM_PATH_PYTHON([3])
|
||||||
PYTHON3=$PYTHON
|
PYTHON3=$PYTHON
|
||||||
test -z "$PYTHON3" && AC_MSG_ERROR([python3 is required for --enable-python3_bindings or --enable-dbus-service but cannot be found])
|
test -z "$PYTHON3" && AC_MSG_ERROR([python3 is required for --enable-python3_bindings or --enable-dbus-service but cannot be found])
|
||||||
|
Loading…
Reference in New Issue
Block a user