This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6eeabd2
)
Don't autovivify a spurious key "all" in the %Targets hash
author
Rafael Garcia-Suarez
<rgs@consttype.org>
Sun, 4 Oct 2009 16:09:14 +0000
(18:09 +0200)
committer
Rafael Garcia-Suarez
<rgs@consttype.org>
Sun, 4 Oct 2009 16:09:14 +0000
(18:09 +0200)
pod/buildtoc
patch
|
blob
|
blame
|
history
diff --git
a/pod/buildtoc
b/pod/buildtoc
index
b3b29c5
..
83eb447
100755
(executable)
--- a/
pod/buildtoc
+++ b/
pod/buildtoc
@@
-209,7
+209,7
@@
close MASTER;
warn "$0: $i exists but is unknown by perl.pod\n"
if !$perlpods{$i} && !exists $sources{$i};
}
- my @BuildTargets = grep {defined} @Targets{keys %Build};
+ my @BuildTargets = grep {defined} @Targets{
grep $_ ne 'all',
keys %Build};
my %BuildFiles;
@BuildFiles{@BuildTargets} = @BuildTargets;