From: Jarkko Hietaniemi Date: Sun, 7 Jul 2002 18:48:06 +0000 (+0000) Subject: Don't install test pods. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=732876f5fd05a3e09db045e26c3a9474761f5247;p=p5sagit%2Fp5-mst-13.2.git Don't install test pods. p4raw-id: //depot/perl@17408 --- diff --git a/installman b/installman index 360d4f3..2260c26 100755 --- a/installman +++ b/installman @@ -139,6 +139,7 @@ sub pod2man { my $tmp; # Skip .pm files that have corresponding .pod files, and Functions.pm. next if (($tmp = $mod) =~ s/\.pm$/.pod/ && -f $tmp); + next if $mod =~ m:/t/:; # no pods from test directories next if ($manpage eq 'Pod/Functions.pm'); #### Used only by pod itself # Convert name from File/Basename.pm to File::Basename.3 format,