From: Alexandre Duret-Lutz Date: Sun, 25 Nov 2001 20:30:54 +0000 (+0000) Subject: * automake.in (scan_one_autoconf_file): Parenthesize qw// in X-Git-Tag: Release-1-5b~17 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=bb120cf86b2d5362d7f91cf90b9cbd118c68956e;p=automake.git * automake.in (scan_one_autoconf_file): Parenthesize qw// in foreach invocation, otherwise Perl5.005_03 complains about a syntax error. Reported by Yann Droneaud. --- diff --git a/ChangeLog b/ChangeLog index 46041b48..0941aa95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-11-25 Alexandre Duret-Lutz + + * 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 * automake.in (scan_texinfo_file): Suppress FIXME about strange diff --git a/THANKS b/THANKS index c8677438..e9610254 100644 --- 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 diff --git a/automake.in b/automake.in index d01c8c1d..7809f0d2 100755 --- a/automake.in +++ b/automake.in @@ -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; }