aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-10-20 09:37:44 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-10-20 09:37:47 +0200
commitf9ad4d51e3dbb84036762f5a9e0c6d712e49d1be (patch)
tree502552332e2ab62d4bf5a60229386140a8947b0e
parent0ccf9b2e5594581deef2f60174c3651a57f93b64 (diff)
parenta78137ec3393fab8b2253995f91b22800886f82b (diff)
downloadbitcoin-f9ad4d51e3dbb84036762f5a9e0c6d712e49d1be.tar.xz
Merge bitcoin/bitcoin#23317: build: fix python detection post #23182
a78137ec3393fab8b2253995f91b22800886f82b build: fix python detection post #23182 (fanquake) Pull request description: #23182 was broken. Fixup the changes, and add python3.11 as suggested. Was going to include this in other changes, but no point leaving this broken any longer. ACKs for top commit: MarcoFalke: cr ACK a78137ec3393fab8b2253995f91b22800886f82b hebasto: ACK a78137ec3393fab8b2253995f91b22800886f82b, tested on Ubuntu Impish 21.10 running `./configure`: Tree-SHA512: f77cbea76710617eaea85787351a707cc2dcfb7e5962fc6d63ea11e737ee96cb2a496a2a4bb5a147b37ba87b0428977d9295ea053e25417ea13f43137c959919
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 06e0f3f25a..5d21c50744 100644
--- a/configure.ac
+++ b/configure.ac
@@ -107,7 +107,7 @@ AC_PATH_TOOL(GCOV, gcov)
AC_PATH_TOOL(LLVM_COV, llvm-cov)
AC_PATH_PROG(LCOV, lcov)
dnl Python 3.6 is specified in .python-version and should be used if available, see doc/dependencies.md
-AC_PATH_PROGS([PYTHON], [python3.6 python3.7 python3.8 python3.9, python3.10, python3 python])
+AC_PATH_PROGS([PYTHON], [python3.6 python3.7 python3.8 python3.9 python3.10 python3.11 python3 python])
AC_PATH_PROG(GENHTML, genhtml)
AC_PATH_PROG([GIT], [git])
AC_PATH_PROG(CCACHE,ccache)