From: Stefano Lattarini Date: Wed, 29 May 2013 08:39:58 +0000 (+0200) Subject: Merge branch 'micro' into maint X-Git-Tag: v1.13b~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c98d5235fca742991504a7e85b9da02a08bba6dc;p=thirdparty%2Fautomake.git Merge branch 'micro' into maint * micro: NEWS: fix typos and grammaros NEWS: document fix for bug#14441 Automake::Rule: consistently prepend underscore to private variables Automake::Rule: rename: suffix_rule() -> next_in_suffix_chain() Automake::Rule: adjust comments and POD according to previous changes Automake::Rule: make private variables lexically scoped suffix rules: better distinction between builtin and user-derived Automake::Rule: expose suffix rules as a function, not a scalar tests: expose automake bug#14441 --- c98d5235fca742991504a7e85b9da02a08bba6dc diff --cc bin/automake.in index 8f3fb4878,63d5bdfdd..24ff2a6d6 --- a/bin/automake.in +++ b/bin/automake.in @@@ -5861,10 -5972,10 +5861,10 @@@ sub register_languag # Update the pattern of known extensions. accept_extensions (@{$lang->extensions}); - # Update the $suffix_rule map. + # Update the suffix rules map. foreach my $suffix (@{$lang->extensions}) { - foreach my $dest (&{$lang->output_extensions} ($suffix)) + foreach my $dest ($lang->output_extensions->($suffix)) { register_suffix_rule (INTERNAL, $suffix, $dest); }