diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-28 02:47:04 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-28 02:47:04 +0000 |
commit | d702ae4256b191c7ab78dd4e746c2175206f38ce (patch) | |
tree | 50251cab91f62dc8040abf2e3c987f91e863023c /installperl | |
parent | cf21f3c64baee1fc09bbeb991ec292f2b276bce6 (diff) | |
download | perl-d702ae4256b191c7ab78dd4e746c2175206f38ce.tar.gz |
cygwin update from Eric Fifer <EFifer@sanwaint.com>
p4raw-id: //depot/perl@4717
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/installperl b/installperl index fd1314fe2c..d1d299559c 100755 --- a/installperl +++ b/installperl @@ -162,13 +162,13 @@ if ($Is_Cygwin) { if ($dlsrc ne "dl_none.xs") { -f $perldll || die "No perl DLL built\n"; - + } # Install the DLL - safe_unlink("$installbin/$perldll"); - copy("$perldll", "$installbin/$perldll"); - chmod(0755, "$installbin/$perldll"); - } + safe_unlink("$installbin/$perldll"); + copy("$perldll", "$installbin/$perldll"); + chmod(0755, "$installbin/$perldll"); + } # if ($Is_W32 or $Is_Cygwin) # This will be used to store the packlist |