Skip to content

Commit 371f0ae

Browse files
author
MarcoFalke
committed
Merge bitcoin/bitcoin#23182: build: add python3.10 alias to AC_PATH_PROGS call in configure
ef15c57 build: add python3.10 alias to AC_PATH_PROGS call in configure (fanquake) Pull request description: Python 3.10 is [now released](https://pythoninsider.blogspot.com/2021/10/python-3100-is-available.html), and has been available as a beta/rc in distros for a little while already. ACKs for top commit: MarcoFalke: cr ACK ef15c57 laanwj: Code review ACK ef15c57 hebasto: ACK ef15c57, I have reviewed the code and it looks OK, I agree it can be merged. Tree-SHA512: 4d503d43dfbe210ac6180c63276d4ebe1aa39b0ada2a36c1292634f86603c385179b3034759441401a9ee5022f7687ccd5f3432be5c4e63f2eba7ddb76f5cbb9
2 parents 816e15e + ef15c57 commit 371f0ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ AC_PATH_TOOL(GCOV, gcov)
107107
AC_PATH_TOOL(LLVM_COV, llvm-cov)
108108
AC_PATH_PROG(LCOV, lcov)
109109
dnl Python 3.6 is specified in .python-version and should be used if available, see doc/dependencies.md
110-
AC_PATH_PROGS([PYTHON], [python3.6 python3.7 python3.8 python3.9 python3 python])
110+
AC_PATH_PROGS([PYTHON], [python3.6 python3.7 python3.8 python3.9, python3.10, python3 python])
111111
AC_PATH_PROG(GENHTML, genhtml)
112112
AC_PATH_PROG([GIT], [git])
113113
AC_PATH_PROG(CCACHE,ccache)

0 commit comments

Comments
 (0)