From: Pierre Lebleu Date: Fri, 8 Nov 2024 14:23:43 +0000 (+0100) Subject: configure.ac: Prefer python3 over python2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=5b31d05726684cfa28c2fb29c2b2590850417729;p=thirdparty%2Frrdtool-1.x.git configure.ac: Prefer python3 over python2 Signed-off-by: Pierre Lebleu --- diff --git a/configure.ac b/configure.ac index be8b4d6e..e2d9860b 100644 --- a/configure.ac +++ b/configure.ac @@ -1018,7 +1018,7 @@ AC_ARG_ENABLE(python,AS_HELP_STRING([--disable-python],[do not build the python if test "$enable_python" = "yes"; then dnl Check for python -AM_PATH_PYTHON(2.3,[],[enable_python=no]) +AM_PATH_PYTHON(3,[],[enable_python=no]) AM_CHECK_PYTHON_HEADERS(,[enable_python=no;AC_MSG_WARN(could not find Python headers)]) fi