[ID 20010621.002] UnixWare 7.1.1 and Perl-5.6.1 problems
author0000-Admin <root@egg.karlov.mff.cuni.cz>
Wed, 20 Jun 2001 14:11:49 +0000 (16:11 +0200)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 21 Jun 2001 13:46:50 +0000 (13:46 +0000)
Message-Id: <200106201211.f5KCBnm24320@egg.karlov.mff.cuni.cz>

Setting umask to something friendlier.

p4raw-id: //depot/perl@10783

installman
installperl

index dad91820cf3fe4bde1627fcaf391d6f720ac2bad..6e007748451b0f59494e8dfa3a82fc79925b6e83 100755 (executable)
@@ -11,6 +11,10 @@ use subs qw(unlink chmod rename link);
 use vars qw($packlist @modpods);
 require Cwd;
 
+if ($Config{d_umask}) {
+    umask(022); # umasks like 077 aren't that useful for installations
+}
+
 $ENV{SHELL} = 'sh' if $^O eq 'os2';
 
 my $ver = $Config{version};     # Not used presently.
index 2774553bb1101bf84d5c7c801804bcf47730f81b..b7df66f5c9522b2eb7c0394dbb17f9a664eb44f5 100755 (executable)
@@ -30,6 +30,10 @@ use ExtUtils::Packlist;
 use Config;
 use subs qw(unlink link chmod);
 
+if ($Config{d_umask}) {
+    umask(022); # umasks like 077 aren't that useful for installations
+}
+
 $Is_NetWare = $Config{osname} eq 'NetWare';
 if ($Is_NetWare) {
        $Is_W32 = 0;