]> sourceware.org Git - automake.git/commitdiff
* automake.in (prepend_srcdir): Parenthesize @inputs to remove
authorAlexandre Duret-Lutz <adl@gnu.org>
Tue, 25 Nov 2003 22:19:43 +0000 (22:19 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Tue, 25 Nov 2003 22:19:43 +0000 (22:19 +0000)
a maintainer-check warning.
* tests/subst2.test: Rewrite the $MAKE invocation to please
maintainer-check.

ChangeLog
automake.in
tests/subst2.test

index 66c1dba290f877c1523f5a2988937f43486c46c5..01dc352a17ae676931a882fcd1ab7c03a8d192ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2003-11-25  Alexandre Duret-Lutz  <adl@gnu.org>
 
+       * 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.
 
index ee8d35e00575b4c1d4c00cb3eb7f8561cefcbe04..94d9ed70eb5de28bec64fa002b1773798203df36 100755 (executable)
@@ -3451,7 +3451,7 @@ sub scan_aclocal_m4 ()
 # prepended.
 sub prepend_srcdir (@)
 {
-  my @inputs = @_;
+  my (@inputs) = @_;
   my @newinputs;
 
   foreach my $single (@inputs)
index 62fddf54174ba4a6cdc14c295129274fa72c90e6..c743b6e04da956e5bf05eca1c7b22fc738845cdd 100755 (executable)
@@ -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
 
This page took 0.039949 seconds and 5 git commands to generate.