From a78137ec3393fab8b2253995f91b22800886f82b Mon Sep 17 00:00:00 2001 From: fanquake Date: Wed, 20 Oct 2021 12:28:04 +0800 Subject: [PATCH] build: fix python detection post #23182 23182 was broken. Fix up the changes, and add python3.11 as suggested. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)