]> git.pld-linux.org Git - packages/perl.git/blame - perl-ExtUtils-MakeMaker-write-permissions.patch
- release 18: -attribute_error.patch
[packages/perl.git] / perl-ExtUtils-MakeMaker-write-permissions.patch
CommitLineData
29a9ca18 1--- ExtUtils-MakeMaker-6.42/inc/ExtUtils/Install.pm.orig 2007-11-17 04:52:56.000000000 +0000
2+++ ExtUtils-MakeMaker-6.42/inc/ExtUtils/Install.pm 2008-02-11 22:33:25.966893319 +0000
3@@ -666,7 +666,7 @@
4 utime($atime,$mtime + $Is_VMS,$targetfile) unless $nonono>1;
a0471c37 5
6
29a9ca18 7- $mode = 0444 | ( $mode & 0111 ? 0111 : 0 );
8+ $mode = 0644 | ( $mode & 0111 ? 0111 : 0 );
9 $mode = $mode | 0222
10 if $realtarget ne $targetfile;
11 _chmod( $mode, $targetfile, $verbose );
12@@ -1018,7 +1018,7 @@
13 }
14 my($mode,$atime,$mtime) = (stat $from)[2,8,9];
15 utime($atime,$mtime+$Is_VMS,$to);
16- _chmod(0444 | ( $mode & 0111 ? 0111 : 0 ),$to);
17+ _chmod(0644 | ( $mode & 0111 ? 0111 : 0 ),$to);
18 next unless $from =~ /\.pm$/;
19 _autosplit($to,$autodir);
22cc155b 20 }
This page took 0.452283 seconds and 4 git commands to generate.