From 45464ee1c638f2c796bf8d0adb631a58174e1108 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Tue, 20 Dec 2011 11:33:26 +0100 Subject: [PATCH] pod_rules.pl was always (re)building everything, not what was asked for. The bug was introduced by commit b78c110439167132, which split Porting/pod_rules.pl out from pod/buildtoc. The previous code in buildtoc would correctly honour the command line options, and only (re)build the requested files. --- Porting/pod_rules.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Porting/pod_rules.pl b/Porting/pod_rules.pl index d23f86f..689219a 100644 --- a/Porting/pod_rules.pl +++ b/Porting/pod_rules.pl @@ -268,7 +268,7 @@ pod/$_: pod/$state->{copies}{$_} } # Do stuff -while (my ($target, $name) = each %Targets) { +while (my ($target, $name) = each %Build) { print "Now processing $name\n" if $Verbose; my $orig = slurp_or_die($name); -- 2.7.4