diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-01-03 16:32:26 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-01-16 10:42:47 +0100 |
commit | 7eb35c035978bf0530591a57244b6922682a3344 (patch) | |
tree | 87a823fa033743f168d76f8b2d2255d436762bd7 /installperl | |
parent | 061a8e130aae43f2cb15bed6b6ae9e3d5b5c837e (diff) | |
download | perl-7eb35c035978bf0530591a57244b6922682a3344.tar.gz |
Remove the Rhapsody port.
Rhapsody was an Apple OS that later evolved into Darwin and Mac OS X. It was
initially only released to developers, but later became Mac OS X Server, with
releases in 1999 and 2000. It was obsoleted by Mac OS X 10.0, released in
March 2001.
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installperl b/installperl index 64a94ab48c..e64b1c39bf 100755 --- a/installperl +++ b/installperl @@ -385,7 +385,7 @@ foreach my $file (@corefiles) { # on dynamically-loadable libraries. So we do it for all. if (copy_if_diff($file,"$installarchlib/CORE/$file")) { if ($file =~ /\.(\Q$so\E|\Q$dlext\E)$/) { - strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody|darwin)$/; + strip("-S", "$installarchlib/CORE/$file") if $^O eq 'darwin'; chmod(0555, "$installarchlib/CORE/$file"); } else { chmod(0444, "$installarchlib/CORE/$file"); @@ -777,7 +777,7 @@ sub installlib { # on dynamically-loaded libraries. if (copy_if_diff($_, "$installlib/$name")) { strip("-S", "$installlib/$name") - if $^O =~ /^(rhapsody|darwin)$/ and /\.(?:so|$dlext|a)$/; + if $^O eq 'darwin' and /\.(?:so|$dlext|a)$/; chmod(/\.(so|$dlext)$/ ? 0555 : 0444, "$installlib/$name"); } } |