From e2da3cc8be1439cd8ea3d11a6d755cda80ee6790 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Fri, 29 Nov 2019 15:24:22 -0600 Subject: [PATCH] configure: add python3 to python's to look for --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ea057028ec..cfd0e86edb 100644 --- a/configure.ac +++ b/configure.ac @@ -87,7 +87,7 @@ AC_ARG_ENABLE(python, AS_HELP_STRING([--enable-python], [Enable python]),[enable_python=$enableval],[enable_python=yes]) - AC_PATH_PROGS(HAVE_PYTHON, python python2 python2.7, "no") + AC_PATH_PROGS(HAVE_PYTHON, python python2 python2.7 python3, "no") if test "x$enable_python" = "xno" ; then echo echo " Warning! python disabled, you will not be " -- 2.47.2