use strict;
my ($Is_VMS, $Is_W32, $Is_OS2, $Is_Cygwin, $Is_Darwin,
$nonono, $dostrip, $versiononly, $silent, $verbose,
- $otherperls, $archname,$Is_NetWare, $nwinstall);
+ $otherperls, $archname,$Is_NetWare, $nwinstall, $nopods);
use vars qw /$depth/;
BEGIN {
$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';
+ $nopods = 1 if $ARGV[0] eq '-p';
if ($ARGV[0] eq '-?' or $ARGV[0] =~ /^-?-h/) {
print <<"EOT";
Usage $0: [switches]
-V Verbose mode.
-A Also install perl with the architecture's name in the perl binary's
name.
+ -p Don't install the pod files. [This will break use diagnostics;]
-netware Install correctly on a Netware server.
EOT
exit;
if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; }
-my @pods = (<pod/*.pod>);
+my @pods = (<pod/*.pod>) unless $nopods;
# Specify here any .pm files that are actually architecture-dependent.
# (Those included with XS extensions under ext/ are automatically