diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-07-21 19:46:19 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-07-21 19:46:19 +0000 |
commit | cd0cddc9814dd65e6506f1a241b13444f607bf61 (patch) | |
tree | 39add3e3518e67684b225f58424bb87d2c76e9e4 /installperl | |
parent | 9ce5b4ad89f76922e208c6d250bb5f1abd31555c (diff) | |
download | perl-cd0cddc9814dd65e6506f1a241b13444f607bf61.tar.gz |
As the perldoc.pod is now in a separate file under pod/,
the installman script was installing an empty perldoc.1 manpage.
p4raw-id: //depot/perl@20179
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index da86e09652..9eaad73d1e 100755 --- a/installperl +++ b/installperl @@ -102,7 +102,7 @@ my (@scripts, @tolink); open SCRIPTS, "utils.lst" or die "Can't open utils.lst: $!"; while (<SCRIPTS>) { next if /^#/; - next if /#\s*pod\s*=/; # Binary programs need separate treatment + next if /#\s*pod\s*=/; # The pods are provided separately chomp; if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) { push @scripts, $1; |