From: Alexandre Duret-Lutz Date: Wed, 13 Aug 2003 21:29:58 +0000 (+0000) Subject: Fix for PR automake/399: X-Git-Tag: Release-1-7b~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fd79af30382dce84cd8d462c5aab7861324c092;p=thirdparty%2Fautomake.git Fix for PR automake/399: * m4/python.m4: Use AC_PATH_PROGS, not AC_PATH_PROG. Report from Per Cederqvist. --- diff --git a/ChangeLog b/ChangeLog index 39cf3d38b..c5095deae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-08-13 Alexandre Duret-Lutz + + Fix for PR automake/399: + * m4/python.m4: Use AC_PATH_PROGS, not AC_PATH_PROG. + Report from Per Cederqvist. + 2003-08-12 Raja R Harinath * lib/Automake/Condition.pm (strip): Replace loop with 'grep'. @@ -15,7 +21,7 @@ * Variable.pm (_var_order, msg_cond_var): Typo in comment. * tests/cond20.test (var2): Use foo.c instead of foo.cc to avoid spurious automake error exit. - + 2003-08-12 Alexandre Duret-Lutz * lib/Automake/Item.pm, lib/Automake/ItemDef.pm: New files. diff --git a/m4/python.m4 b/m4/python.m4 index e50243793..a327598bb 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -56,7 +56,7 @@ AC_DEFUN([AM_PATH_PYTHON], m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. - AC_PATH_PROG([PYTHON], _AM_PYTHON_INTERPRETER_LIST) + AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST) am_display_PYTHON=python ], [ dnl A version check is needed.