utils.lst parsing tweak for bin/perldoc installation from Rafael.
Jarkko Hietaniemi [Wed, 23 Jul 2003 12:40:11 +0000 (12:40 +0000)]
p4raw-id: //depot/perl@20180

installperl

index 9eaad73..52df9c1 100755 (executable)
@@ -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;