diff options
author | Abigail <abigail@abigail.be> | 2000-08-25 23:57:34 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-26 14:12:23 +0000 |
commit | 4ad019ef94780941c09f3a5748d7f3e22c585ed0 (patch) | |
tree | c5a2a017798e99af582548998842187e62ba432d /installperl | |
parent | 03284eb6ec827d07c030082154485bd4c4cf4a37 (diff) | |
download | perl-4ad019ef94780941c09f3a5748d7f3e22c585ed0.tar.gz |
no-install target a la make -n.
Subject: [PATCH] make no-install (was Re: [PATCH] installation not quite silent yet.)
Message-ID: <20000826075735.18912.qmail@foad.org>
p4raw-id: //depot/perl@6839
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index 84e51f4c3d..b1a1877060 100755 --- a/installperl +++ b/installperl @@ -56,7 +56,7 @@ while (@ARGV) { $versiononly = 1 if $ARGV[0] eq '-v'; $silent = 1 if $ARGV[0] eq '-S'; $otherperls = 0 if $ARGV[0] eq '-o'; - $verbose = 1 if $ARGV[0] eq '-V'; + $verbose = 1 if $ARGV[0] eq '-V' || $ARGV [0] eq '-n'; shift; } |