From 0f47ea5d8088ede472650da47bf58e5a0e063ad4 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Mon, 3 Feb 2020 08:45:49 -0500 Subject: [PATCH] [build] Check for Python 3 in configure.ac (#18625) I fear this causing packaging problems, but as-is we require Python 3 for most of our Python files but don't actually check for that in configure. We should be consistent about this. Some projects (notably wasm) also use the Python version detected here, so bumping this will also bump the version used in those cases (a good thing, since there are some known bugs when using the scripts with Python 2). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 91c9c150252..df94e2d25b8 100644 --- a/configure.ac +++ b/configure.ac @@ -609,7 +609,7 @@ AC_CHECK_TOOL(CC, gcc, gcc) AC_PROG_CC AC_CHECK_TOOL(CXX, g++, g++) AC_PROG_CXX -AM_PATH_PYTHON +AM_PATH_PYTHON([3.2]) AM_PROG_AS AC_PROG_INSTALL AC_PROG_AWK -- 2.11.4.GIT