Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lucia <rylucia@microsoft.com>2020-02-03 16:45:49 +0300
committerGitHub <noreply@github.com>2020-02-03 16:45:49 +0300
commit0f47ea5d8088ede472650da47bf58e5a0e063ad4 (patch)
treebb141af596b8d1872985e284e4e604848c6bc6f5
parent9ea350ed3c963c77f0f4f77ec590cc3c84773424 (diff)
[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).
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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