From: Nicholas Clark Date: Tue, 21 Aug 2001 17:34:23 +0000 (+0100) Subject: installperl -help X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=33bd2d8f0a8d0bccb1393938cc94ab135b31928f;p=p5sagit%2Fp5-mst-13.2.git installperl -help Message-Id: <20010821173423.F82818@plum.flirble.org> p4raw-id: //depot/perl@11723 --- diff --git a/installperl b/installperl index c3c4e4a..86d9c2c 100755 --- a/installperl +++ b/installperl @@ -72,6 +72,24 @@ while (@ARGV) { $verbose = 1 if $ARGV[0] eq '-V' || $ARGV [0] eq '-n'; $archname = 1 if $ARGV[0] eq '-A'; $nwinstall = 1 if $ARGV[0] eq '-netware'; + if ($ARGV[0] eq '-?' or $ARGV[0] =~ /^-?-h/) { + print <<"EOT"; +Usage $0: [switches] + -n Don't actually run any commands; just print them. + -s Run strip on installed binaries. + -v Only install perl as a binary with the version number in the name. + (Override whatever config.sh says) + +v Install perl as "perl" and as a binary with the version number in + the name. (Override whatever config.sh says) + -S Silent mode. + -o Skip checking for other copies of perl in your PATH. + -V Verbose mode. + -A Also install perl with the architecture's name in the perl binary's + name. + -netware Install correctly on a Netware server. +EOT + exit; + } shift; }