automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, warns-win-over-strictness,


From: Stefano Lattarini
Subject: [Automake-commit] [SCM] GNU Automake branch, warns-win-over-strictness, updated. v1.11-628-gf20b389
Date: Tue, 18 Jan 2011 13:11:13 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=f20b389a8b3a9378164b57e5681bb0dcf74dc8bc

The branch, warns-win-over-strictness has been updated
       via  f20b389a8b3a9378164b57e5681bb0dcf74dc8bc (commit)
       via  c4c1aa2d708ceb4c0f245a91a0e28a1ddff16c2f (commit)
      from  19a272ee9a1c7a1f2a4de9bac8e56f83dcbde06e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 ChangeLog               |    7 +++++++
 lib/Automake/Options.pm |    2 +-
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 8d335fe..c746764 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-01-17  Ralf Wildenhues  <address@hidden>
+
+       Avoid local $_ perl variable, for Perl before 5.9.1.
+       * lib/Automake/Options.pm (_process_option_list): Do not
+       lexically localize $_.  Fixes bootstrap on AIX 5.1.
+       Bug introduced in commit `v1.11-622-gf90a06c'.
+
 2011-01-15  Stefano Lattarini  <address@hidden>
 
        Update docs w.r.t. warning and strictness options.
diff --git a/lib/Automake/Options.pm b/lib/Automake/Options.pm
index 31052c0..778167a 100644
--- a/lib/Automake/Options.pm
+++ b/lib/Automake/Options.pm
@@ -260,7 +260,7 @@ sub _process_option_list (\%@)
 
   foreach my $h (@list)
     {
-      my $_ = $h->{'option'};
+      local $_ = $h->{'option'};
       my $where = $h->{'where'};
       $options->{$_} = $where;
       if ($_ eq 'gnits' || $_ eq 'gnu' || $_ eq 'foreign')


hooks/post-receive
-- 
GNU Automake



reply via email to

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