From: Alexandre Duret-Lutz Date: Tue, 25 Nov 2003 22:19:44 +0000 (+0000) Subject: * automake.in (prepend_srcdir): Parenthesize @inputs to remove X-Git-Tag: Release-1-7f~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=721c236a42ae8b06b545bc7f8ae32835fb35de63;p=thirdparty%2Fautomake.git * automake.in (prepend_srcdir): Parenthesize @inputs to remove a maintainer-check warning. * tests/subst2.test: Rewrite the $MAKE invocation to please maintainer-check. --- diff --git a/ChangeLog b/ChangeLog index 66c1dba29..01dc352a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2003-11-25 Alexandre Duret-Lutz + * automake.in (prepend_srcdir): Parenthesize @inputs to remove + a maintainer-check warning. + * tests/subst2.test: Rewrite the $MAKE invocation to please + maintainer-check. + * lib/config.sub, lib/config.guess, lib/texinfo.tex: New upstream versions. diff --git a/automake.in b/automake.in index ee8d35e00..94d9ed70e 100755 --- a/automake.in +++ b/automake.in @@ -3451,7 +3451,7 @@ sub scan_aclocal_m4 () # prepended. sub prepend_srcdir (@) { - my @inputs = @_; + my (@inputs) = @_; my @newinputs; foreach my $single (@inputs) diff --git a/tests/subst2.test b/tests/subst2.test index 62fddf541..c743b6e04 100755 --- a/tests/subst2.test +++ b/tests/subst2.test @@ -48,7 +48,7 @@ $AUTOMAKE $MAKE print-programs >foo cat foo grep 'BEG: :END' foo -$MAKE am__empty=X print-programs >foo +am__empty=X $MAKE -e print-programs >foo cat foo grep 'BEG: X :END' foo