X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fbuildtoc.PL;h=b38bec57a09516e9f28abdc19863f259a361251d;hb=510179aa6f5aa7ad3c9e95a67b4958c9aa11a67f;hp=bb6d0d3ad0aaeeb539619f48ca50a246bda7807c;hpb=8a93676d2b6d9cfcd46e9efcc3c94cc624b3b332;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/buildtoc.PL b/pod/buildtoc.PL index bb6d0d3..b38bec5 100644 --- a/pod/buildtoc.PL +++ b/pod/buildtoc.PL @@ -122,6 +122,7 @@ if (-d "pod") { perlvar perllol perlopentut + perlpacktut perlretut perlre @@ -145,6 +146,7 @@ if (-d "pod") { perlport perllocale + perluniintro perlunicode perlebcdic @@ -190,6 +192,7 @@ if (-d "pod") { perl572delta perl571delta perl570delta + perl561delta perl56delta perl5005delta perl5004delta @@ -283,12 +286,12 @@ find \&getpods => qw(../lib ../ext); sub getpods { if (/\.p(od|m)$/) { - # Skip .pm files that have corresponding .pod files, and Functions.pm. - return if /(.*)\.pm$/ && -f "$1.pod"; my $file = $File::Find::name; return if $file eq '../lib/Pod/Functions.pm'; # Used only by pod itself return if $file =~ m!lib/Attribute/Handlers/demo/!; - + return if $file =~ m!lib/Net/FTP/.+\.pm!; # Hi, Graham! :-) + return if $file =~ m!lib/Math/BigInt/t/!; + return if $file =~ m!/Devel/PPPort/[Hh]arness|lib/Devel/Harness!i; die "tut $name" if $file =~ /TUT/; unless (open (F, "< $_\0")) { warn "bogus <$file>: $!";