diff options
author | Daniel Kahn Gillmor <[email protected]> | 2019-12-04 20:14:10 +0000 |
---|---|---|
committer | Daniel Kahn Gillmor <[email protected]> | 2020-01-23 23:26:48 +0000 |
commit | 414938cfedbdb97b83d00e8619dec9502096be22 (patch) | |
tree | 3c8ece9ff1c54c0254023d0d8bde9b961507bc28 /m4 | |
parent | core: Add MacOS fallbacks to look for binaries (diff) | |
download | gpgme-414938cfedbdb97b83d00e8619dec9502096be22.tar.gz gpgme-414938cfedbdb97b83d00e8619dec9502096be22.zip |
m4/python: Scan for python 3.8 as welldkg/fix-4821
* m4/python.m4: Scan for python 3.8 as well.
--
It's not clear to me why python3.8 should be commented out of the
python path search. This change simplifies and normalizes the search
for modern versions of python 3.
Signed-Off-By: Daniel Kahn Gillmor <[email protected]>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/python.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/python.m4 b/m4/python.m4 index f8a759c6..2ceaf737 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -42,7 +42,7 @@ AC_DEFUN([AM_PATH_PYTHON], m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python2 python2.7 dnl python dnl - python3 python3.7 python3.6 python3.5 python3.4 dnl python3.8 + python3 python3.8 python3.7 python3.6 python3.5 python3.4 ]) AC_ARG_VAR([PYTHON], [the Python interpreter]) |