summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-12-20 11:33:26 +0100
committerNicholas Clark <nick@ccl4.org>2011-12-20 11:37:01 +0100
commit45464ee1c638f2c796bf8d0adb631a58174e1108 (patch)
tree9b2301a2c5242669dc78574ef21e88eeda20e977 /Porting
parent3d2a0adf2ae6b432e11668e511671510450d3243 (diff)
downloadperl-45464ee1c638f2c796bf8d0adb631a58174e1108.tar.gz
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.
Diffstat (limited to 'Porting')
-rw-r--r--Porting/pod_rules.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/pod_rules.pl b/Porting/pod_rules.pl
index d23f86f935..689219a794 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);