Add python3.8 to the autoconf search list

It was discovered that FreeBSD doesn't setup alias from default
Python version neither to python3 nor python, and thus the configure
step would fail to find working python installation.
This commit is contained in:
Ondřej Surý
2021-09-22 10:24:16 +02:00
parent eeba2e305e
commit 38244fdf88
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@@ -12635,7 +12635,7 @@ except: exit(1)'
testsetup='try: from distutils.core import setup
except: exit(1)'
default_with_python="python python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7"
default_with_python="python python3 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7"

View File

@@ -229,7 +229,7 @@ except: exit(1)'
testsetup='try: from distutils.core import setup
except: exit(1)'
default_with_python="python python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7"
default_with_python="python python3 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python2 python2.7"
AC_ARG_VAR([PYTHON], [path to python executable])