Skip to content

Commit

Permalink
build: add python3.10 alias to AC_PATH_PROGS call in configure
Browse files Browse the repository at this point in the history
Python 3.10 is now relased, and has been available as a beta/rc in
distros for a little while already.

Github-Pull: bitcoin#23182
Rebased-From: ef15c57
  • Loading branch information
fanquake authored and luke-jr committed Nov 11, 2021
1 parent 1cd9a93 commit ff7d9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -108,7 +108,7 @@ AC_PATH_TOOL(GCOV, gcov)
AC_PATH_TOOL(LLVM_COV, llvm-cov)
AC_PATH_PROG(LCOV, lcov)
dnl Python 3.5 is specified in .python-version and should be used if available, see doc/dependencies.md
AC_PATH_PROGS([PYTHON], [python3.5 python3.6 python3.7 python3.8 python3.9 python3 python])
AC_PATH_PROGS([PYTHON], [python3.5 python3.6 python3.7 python3.8 python3.9, python3.10, python3 python])
AC_PATH_PROG(GENHTML, genhtml)
AC_PATH_PROG([GIT], [git])
AC_PATH_PROG(CCACHE,ccache)
Expand Down

0 comments on commit ff7d9df

Please sign in to comment.