In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/78fb583c0588329906d767eceec4c92fe2774964?hp=e1466347d2d91d81b58b469c8fe703042244c9df>
- Log ----------------------------------------------------------------- commit 78fb583c0588329906d767eceec4c92fe2774964 Author: Robin Barker <[email protected]> Date: Mon Jun 29 15:05:18 2009 +0100 Stop buildtoc warning that perltoc.pod is missing whist it is building same. ----------------------------------------------------------------------- Summary of changes: pod/buildtoc | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pod/buildtoc b/pod/buildtoc index 7b770f2..cae3dfe 100644 --- a/pod/buildtoc +++ b/pod/buildtoc @@ -209,9 +209,13 @@ 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 %BuildFiles; + @buildfil...@buildtargets} = @BuildTargets; + foreach my $i (sort keys %our_pods) { warn "$0: $i is known by buildtoc but does not exist\n" - unless $disk_pods{$i}; + unless $disk_pods{$i} or $BuildFiles{$i}; } foreach my $i (sort keys %manipods) { warn "$0: $i is known by ../MANIFEST but does not exist\n" @@ -221,7 +225,7 @@ close MASTER; } foreach my $i (sort keys %perlpods) { warn "$0: $i is known by perl.pod but does not exist\n" - unless $disk_pods{$i}; + unless $disk_pods{$i} or $BuildFiles{$i}; } } -- Perl5 Master Repository
