summaryrefslogtreecommitdiff
path: root/installperl
diff options
context:
space:
mode:
authorCharles Bailey <bailey@newman.upenn.edu>2000-02-26 07:04:55 +0000
committerbailey <bailey@newman.upenn.edu>2000-02-26 07:04:55 +0000
commit2841d78411ddadd05a6fbe13e0be06f765fad3fb (patch)
tree5654902690bfb2994f8fe0a17c4bb3c1d7e46797 /installperl
parentcdc0122e98f2421b6507acbc7231bee768f9d260 (diff)
parentffb04cf170fa14d0606f2c3643c438d43784ee46 (diff)
downloadperl-2841d78411ddadd05a6fbe13e0be06f765fad3fb.tar.gz
Resync with mainline
p4raw-id: //depot/vmsperl@5269
Diffstat (limited to 'installperl')
-rwxr-xr-xinstallperl11
1 files changed, 7 insertions, 4 deletions
diff --git a/installperl b/installperl
index 00f3df1bbe..387f4b3560 100755
--- a/installperl
+++ b/installperl
@@ -8,7 +8,7 @@ BEGIN {
}
use strict;
-use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $nonono $versiononly $depth);
+use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $nonono $dostrip $versiononly $depth);
BEGIN {
$Is_VMS = $^O eq 'VMS';
@@ -50,6 +50,7 @@ my $perl_verbase = defined($ENV{PERLNAME_VERBASE})
while (@ARGV) {
$nonono = 1 if $ARGV[0] eq '-n';
+ $dostrip = 1 if $ARGV[0] eq '-s';
$versiononly = 1 if $ARGV[0] eq '-v';
shift;
}
@@ -196,7 +197,7 @@ elsif ($^O eq 'mpeix') {
elsif ($^O ne 'dos') {
safe_unlink("$installbin/$perl_verbase$ver$exe_ext");
copy("perl$exe_ext", "$installbin/$perl_verbase$ver$exe_ext");
- strip("$installbin/$perl_verbase$ver$exe_ext") if $^O =~ /^(rhapsody)$/;
+ strip("$installbin/$perl_verbase$ver$exe_ext");
chmod(0755, "$installbin/$perl_verbase$ver$exe_ext");
}
else {
@@ -259,9 +260,9 @@ foreach my $file (@corefiles) {
# HP-UX (at least) needs to maintain execute permissions
# on dynamically-loadable libraries. So we do it for all.
if (copy_if_diff($file,"$installarchlib/CORE/$file")) {
- if ($file =~ /\.(so|\Q$dlext\E)$/) {
+ if ($file =~ /\.(\Q$so\E|\Q$dlext\E)$/) {
chmod(0555, "$installarchlib/CORE/$file");
- strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody)$/;
+ strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody|darwin)$/;
} else {
chmod(0444, "$installarchlib/CORE/$file");
}
@@ -651,6 +652,8 @@ sub strip
{
my(@args) = @_;
+ return unless $dostrip;
+
my @opts;
while (@args && $args[0] =~ /^(-\w+)$/) {
push @opts, shift @args;