]> git.pld-linux.org Git - packages/perl.git/blame - perl-write-permissions.patch
- up to 5.16.0; 3 tests fails and bunch of unpackaged files is there
[packages/perl.git] / perl-write-permissions.patch
CommitLineData
253f30cb 1--- perl-5.12.0/dist/ExtUtils-Install/lib/ExtUtils/Install.pm.orig 2009-08-03 21:36:03.000000000 +0200
2+++ perl-5.12.0/dist/ExtUtils-Install/lib/ExtUtils/Install.pm 2009-09-12 10:07:06.181527344 +0200
7e81db84 3@@ -813,7 +813,7 @@
4 utime($atime,$mtime + $Is_VMS,$targetfile) unless $dry_run>1;
eff70e0a
AM
5
6
7e81db84 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@@ -1215,7 +1215,7 @@
eff70e0a
AM
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);
3f3763d9 20 }
This page took 0.035279 seconds and 4 git commands to generate.