From: Stefano Lattarini Date: Sat, 11 Aug 2012 12:34:20 +0000 (+0200) Subject: [ng] cleanup: remove a now-unused variable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4b45dd4c6422cc612aab23b7b8c03153e22884e;p=thirdparty%2Fautomake.git [ng] cleanup: remove a now-unused variable * automake.in (handle_dist): Here: '%transform'. Signed-off-by: Stefano Lattarini --- diff --git a/automake.in b/automake.in index 4ca052543..f35e4e1bf 100644 --- a/automake.in +++ b/automake.in @@ -3172,9 +3172,6 @@ sub user_phony_rule ($) # Handle 'dist' target. sub handle_dist () { - # Substitutions for distdir.am - my %transform; - # Define DIST_SUBDIRS. This must always be done, regardless of the # no-dist setting: target like 'distclean' or 'maintainer-clean' use it. my $subdirs = var ('SUBDIRS'); @@ -3304,9 +3301,7 @@ sub handle_dist () define_variable ('am.dist.extra-targets', INTERNAL, @dist_targets); define_variable ('am.dist.common-files.internal', INTERNAL, @dist_common); - $output_rules .= &file_contents ('distdir', - new Automake::Location, - %transform); + $output_rules .= &file_contents ('distdir', new Automake::Location); verbatim ('distcheck') if $relative_dir eq '.'; }