diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-07 23:37:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-07 23:37:48 +0000 |
commit | c645ec3fd74a29e359e29872c448f083581207ce (patch) | |
tree | 907a5d08eea6bf0407c8bc43e7703a824b5c9a3e /installhtml | |
parent | 01724ea0117e95cb2b727cb7055bec7a17087b2c (diff) | |
download | perl-c645ec3fd74a29e359e29872c448f083581207ce.tar.gz |
VMS build patch (from Peter Prymmer)
p4raw-id: //depot/perl@5605
Diffstat (limited to 'installhtml')
-rwxr-xr-x | installhtml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/installhtml b/installhtml index c268f54b36..cfbbe9f5c6 100755 --- a/installhtml +++ b/installhtml @@ -159,6 +159,10 @@ $pod2html = "pod/pod2html"; usage("") unless @ARGV; +# Overcome shell's p1,..,p8 limitation. +# See vms/descrip_mms.template -> descrip.mms for invokation. +if ( $^O eq 'VMS' ) { @ARGV = split(/\s+/,$ARGV[0]); } + # parse the command-line $result = GetOptions( qw( help |