mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
configure: update
This commit is contained in:
parent
5dbe2fdd9d
commit
23ef677762
10
aclocal.m4
vendored
10
aclocal.m4
vendored
@ -496,12 +496,14 @@ AC_DEFUN([AM_PATH_PYTHON],
|
|||||||
m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
|
m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
|
||||||
else
|
else
|
||||||
|
|
||||||
dnl Query Python for its version number. Getting [:3] seems to be
|
dnl Query Python for its version number. Although site.py simply uses
|
||||||
dnl the best way to do this; it's what "site.py" does in the standard
|
dnl sys.version[:3], printing that failed with Python 3.10, since the
|
||||||
dnl library.
|
dnl trailing zero was eliminated. So now we output just the major
|
||||||
|
dnl and minor version numbers, as numbers. Apparently the tertiary
|
||||||
|
dnl version is not of interest.
|
||||||
|
|
||||||
AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
|
AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
|
||||||
[am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
|
[am_cv_python_version=`$PYTHON -c "import sys; print('%u.%u' % sys.version_info[[:2]])"`])
|
||||||
AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
|
AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
|
||||||
|
|
||||||
dnl Use the values of $prefix and $exec_prefix for the corresponding
|
dnl Use the values of $prefix and $exec_prefix for the corresponding
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -11962,7 +11962,7 @@ $as_echo_n "checking for $am_display_PYTHON version... " >&6; }
|
|||||||
if ${am_cv_python_version+:} false; then :
|
if ${am_cv_python_version+:} false; then :
|
||||||
$as_echo_n "(cached) " >&6
|
$as_echo_n "(cached) " >&6
|
||||||
else
|
else
|
||||||
am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`
|
am_cv_python_version=`$PYTHON -c "import sys; print('%u.%u' % sys.version_info[:2])"`
|
||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5
|
||||||
$as_echo "$am_cv_python_version" >&6; }
|
$as_echo "$am_cv_python_version" >&6; }
|
||||||
|
Loading…
Reference in New Issue
Block a user