diff options
Diffstat (limited to 'config/python.m4')
-rw-r--r-- | config/python.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/python.m4 b/config/python.m4 index 953d7093053..f3c76422296 100644 --- a/config/python.m4 +++ b/config/python.m4 @@ -6,10 +6,10 @@ # PGAC_PATH_PYTHON # ---------------- -# Look for Python and set the output variable 'PYTHON' -# to 'python' if found, empty otherwise. +# Look for Python and set the output variable 'PYTHON' if found, +# fail otherwise. AC_DEFUN([PGAC_PATH_PYTHON], -[AC_PATH_PROG(PYTHON, python) +[PGAC_PATH_PROGS(PYTHON, python) if test x"$PYTHON" = x""; then AC_MSG_ERROR([Python not found]) fi |