diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-04-02 21:23:18 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-04-02 21:23:18 +0000 |
commit | efb12ca0ae2c1caa2957f5526a209e53e81f2ef8 (patch) | |
tree | 7678106af7f0cfc41bbfb5627257f0d2a424b752 /installperl | |
parent | 95470547e854df745a1dec3565d4ef1ed8634342 (diff) | |
download | perl-efb12ca0ae2c1caa2957f5526a209e53e81f2ef8.tar.gz |
various little goofs
p4raw-id: //depot/perl@3202
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installperl b/installperl index 93b9947d94..ebb6f47f9d 100755 --- a/installperl +++ b/installperl @@ -173,7 +173,7 @@ elsif ($^O eq 'mpeix') { elsif ($^O ne 'dos') { safe_unlink("$installbin/$perl$ver$exe_ext"); copy("perl$exe_ext", "$installbin/$perl$ver$exe_ext"); - strip("$installbin/perl$ver$exe_ext") if $^O =~ /^(rhapsody)$; + strip("$installbin/perl$ver$exe_ext") if $^O =~ /^(rhapsody)$/; chmod(0755, "$installbin/$perl$ver$exe_ext"); } else { @@ -236,7 +236,7 @@ foreach my $file (@corefiles) { if (copy_if_diff($file,"$installarchlib/CORE/$file")) { if ($file =~ /\.(so|\Q$dlext\E)$/) { chmod(0555, "$installarchlib/CORE/$file"); - strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody)$; + strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody)$/; } else { chmod(0444, "$installarchlib/CORE/$file"); } |