summaryrefslogtreecommitdiff
path: root/installperl
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-07-23 12:40:11 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-07-23 12:40:11 +0000
commit71c9e11c8d320b29fd87c15e0557fc3957df10f4 (patch)
tree0f45eb9a0a31896f0d82a5781fc54483702fdbde /installperl
parentcd0cddc9814dd65e6506f1a241b13444f607bf61 (diff)
downloadperl-71c9e11c8d320b29fd87c15e0557fc3957df10f4.tar.gz
utils.lst parsing tweak for bin/perldoc installation from Rafael.
p4raw-id: //depot/perl@20180
Diffstat (limited to 'installperl')
-rwxr-xr-xinstallperl3
1 files changed, 2 insertions, 1 deletions
diff --git a/installperl b/installperl
index 9eaad73d1e..52df9c18b9 100755
--- a/installperl
+++ b/installperl
@@ -102,7 +102,8 @@ my (@scripts, @tolink);
open SCRIPTS, "utils.lst" or die "Can't open utils.lst: $!";
while (<SCRIPTS>) {
next if /^#/;
- next if /#\s*pod\s*=/; # The pods are provided separately
+ s/\s*#\s*pod\s*=.*//; # install script regardless of pod location
+ next if /a2p/; # a2p is binary, to be installed separately
chomp;
if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) {
push @scripts, $1;