automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYI: perl5.005_03.patch (Was: Re: automake-2001-11-19/perl-5.005 broken


From: Alexandre Duret-Lutz
Subject: FYI: perl5.005_03.patch (Was: Re: automake-2001-11-19/perl-5.005 broken ?)
Date: 25 Nov 2001 21:21:17 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7

>>> "Yann" == Yann Droneaud <address@hidden> writes:

 Yann> Hi,
 Yann> The latest CVS snapshot of automake (at least since
 Yann> 2001-11-19) don't work at all.  Most of the check of make
 Yann> check failed.
[...]
 Yann> This is perl, version 5.005_03 built for i586-linux-thread
[...]

Thanks.  I've installed Perl 5.005_03 to verify the testsuite
succeed after the following patch.

Index: ChangeLog
--- ChangeLog
+++ ChangeLog
@@ -1,1 +1,7 @@
+2001-11-25  Alexandre Duret-Lutz  <address@hidden>
+
+       * automake.in (scan_one_autoconf_file): Parenthesize qw// in
+       foreach invocation, otherwise Perl5.005_03 complains about a
+       syntax error.  Reported by Yann Droneaud.
+

Index: automake.in
===================================================================
RCS file: /cvs/automake/automake/automake.in,v
retrieving revision 1.1239
diff -u -r1.1239 automake.in
--- automake.in 2001/11/19 12:32:39 1.1239
+++ automake.in 2001/11/25 20:25:31
@@ -4728,7 +4728,7 @@
         # 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;
              }

-- 
Alexandre Duret-Lutz



reply via email to

[Prev in Thread] Current Thread [Next in Thread]