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 | 5cc246612842dcc729757268bd6a856c420c658b (patch) | |
tree | 7678106af7f0cfc41bbfb5627257f0d2a424b752 /installperl | |
parent | eb8faf6977841917141a39366c09b4f66d02509d (diff) | |
download | perl-5cc246612842dcc729757268bd6a856c420c658b.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"); } |