]> sourceware.org Git - automake.git/commitdiff
* automake.in (scan_one_autoconf_file): Parenthesize qw// in
authorAlexandre Duret-Lutz <adl@gnu.org>
Sun, 25 Nov 2001 20:30:54 +0000 (20:30 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Sun, 25 Nov 2001 20:30:54 +0000 (20:30 +0000)
foreach invocation, otherwise Perl5.005_03 complains about a
syntax error.  Reported by Yann Droneaud.

ChangeLog
THANKS
automake.in

index 46041b4875e8597054916ea824ed8758e7921b1e..0941aa9573db625f6687daa4c68aa97dddd76295 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-11-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * automake.in (scan_one_autoconf_file): Parenthesize qw// in
+       foreach invocation, otherwise Perl5.005_03 complains about a
+       syntax error.  Reported by Yann Droneaud.
+
 2001-11-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.in (scan_texinfo_file): Suppress FIXME about strange
diff --git a/THANKS b/THANKS
index c867743833f5e881c624e7001a6b287e0f2d58f3..e96102546201fdbadb50b2c350127293fc78b3b2 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -162,3 +162,4 @@ Tim Van Holder              tim.van.holder@pandora.be
 Ulrich Drepper         drepper@gnu.ai.mit.edu
 Vadim Zeitlin          Vadim.zeitlin@dptmaths.ens-cachan.fr
 Werner Koch            wk@isil.d.shuttle.de
+Yann Droneaud          ydroneaud@meuh.eu.org
index d01c8c1ddd7468f61b6beaf66a4b5c6c6ecb64dd..7809f0d20734767f1e215c661dda457ce006aeca 100755 (executable)
@@ -4728,7 +4728,7 @@ sub scan_one_autoconf_file
         # because not all programs will necessarily use X.
        if (/AC_PATH_XTRA/)
          {
-           foreach my $var qw(X_CFLAGS X_LIBS X_EXTRA_LIBS X_PRE_LIBS)
+           foreach my $var (qw(X_CFLAGS X_LIBS X_EXTRA_LIBS X_PRE_LIBS))
              {
                $configure_vars{$var} = $here;
              }
This page took 0.04748 seconds and 5 git commands to generate.