X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fbuildtoc.PL;h=b38bec57a09516e9f28abdc19863f259a361251d;hb=1a6071381913ad8fca476a56b6dbb62e5c99c1bd;hp=5d789624db9efc98daca2651a7fa05f755e65eb7;hpb=10151d0966452be13ba80e564c1a4b44d3c05d9d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/buildtoc.PL b/pod/buildtoc.PL index 5d78962..b38bec5 100644 --- a/pod/buildtoc.PL +++ b/pod/buildtoc.PL @@ -109,6 +109,7 @@ if (-d "pod") { perldsc perlrequick perlpod + perlpodspec perlstyle perltrap @@ -121,6 +122,7 @@ if (-d "pod") { perlvar perllol perlopentut + perlpacktut perlretut perlre @@ -144,6 +146,7 @@ if (-d "pod") { perlport perllocale + perluniintro perlunicode perlebcdic @@ -189,6 +192,7 @@ if (-d "pod") { perl572delta perl571delta perl570delta + perl561delta perl56delta perl5005delta perl5004delta @@ -282,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>: $!";