summaryrefslogtreecommitdiff
path: root/installman
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-07-07 18:48:06 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-07-07 18:48:06 +0000
commit732876f5fd05a3e09db045e26c3a9474761f5247 (patch)
tree27b2871ba3d656e4f3cd32bd177bcb7587bfe9e6 /installman
parent650375fe384cb56dbced4fc42b30d62c1977e193 (diff)
downloadperl-732876f5fd05a3e09db045e26c3a9474761f5247.tar.gz
Don't install test pods.
p4raw-id: //depot/perl@17408
Diffstat (limited to 'installman')
-rwxr-xr-xinstallman1
1 files changed, 1 insertions, 0 deletions
diff --git a/installman b/installman
index 360d4f34f7..2260c26d42 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,