diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-03 07:42:23 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-03 07:42:23 +0000 |
commit | 4e0bac30cf8781c4385a7617e92d21af5cfddbff (patch) | |
tree | d1c398fb79e7b5c097047be11cc84924c992b7d5 /lib/ExtUtils/Manifest.pm | |
parent | a07043ec8c6b8db003369856eadf14ccd8d179cc (diff) | |
download | perl-4e0bac30cf8781c4385a7617e92d21af5cfddbff.tar.gz |
don't mess with the umask()
p4raw-id: //depot/perl@4632
Diffstat (limited to 'lib/ExtUtils/Manifest.pm')
-rw-r--r-- | lib/ExtUtils/Manifest.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/ExtUtils/Manifest.pm b/lib/ExtUtils/Manifest.pm index 52cfc2a80a..58c91bc44b 100644 --- a/lib/ExtUtils/Manifest.pm +++ b/lib/ExtUtils/Manifest.pm @@ -187,7 +187,6 @@ sub manicopy { require File::Basename; my(%dirs,$file); $target = VMS::Filespec::unixify($target) if $Is_VMS; - umask 0 unless $Is_VMS; File::Path::mkpath([ $target ],1,$Is_VMS ? undef : 0755); foreach $file (keys %$read){ $file = VMS::Filespec::unixify($file) if $Is_VMS; |