]> git.pld-linux.org Git - packages/perl.git/commitdiff
- copier from perl-ExtUtils-MakeMaker-write-permissions.patch rev 1.1 for use in...
authorsparky <sparky@pld-linux.org>
Fri, 18 May 2007 15:09:10 +0000 (15:09 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-write-permissions.patch -> 1.1

perl-write-permissions.patch [new file with mode: 0644]

diff --git a/perl-write-permissions.patch b/perl-write-permissions.patch
new file mode 100644 (file)
index 0000000..e3f9878
--- /dev/null
@@ -0,0 +1,20 @@
+--- ExtUtils-MakeMaker-6.30.orig/lib/ExtUtils/Install.pm       2005-03-22 04:30:24.000000000 +0000
++++ ExtUtils-MakeMaker-6.30.write-permissions/lib/ExtUtils/Install.pm  2006-10-30 16:14:28.000000000 +0000
+@@ -180,7 +180,7 @@
+               print "Installing $targetfile\n";
+               utime($atime,$mtime + $Is_VMS,$targetfile) unless $nonono>1;
+               print "utime($atime,$mtime,$targetfile)\n" if $verbose>1;
+-              $mode = 0444 | ( $mode & 0111 ? 0111 : 0 );
++              $mode = 0644 | ( $mode & 0111 ? 0111 : 0 );
+               chmod $mode, $targetfile;
+               print "chmod($mode, $targetfile)\n" if $verbose>1;
+           } else {
+@@ -451,7 +451,7 @@
+       }
+       my($mode,$atime,$mtime) = (stat $from)[2,8,9];
+       utime($atime,$mtime+$Is_VMS,$to);
+-      chmod(0444 | ( $mode & 0111 ? 0111 : 0 ),$to);
++      chmod(0644 | ( $mode & 0111 ? 0111 : 0 ),$to);
+       next unless $from =~ /\.pm$/;
+       _autosplit($to,$autodir);
+     }
This page took 0.113418 seconds and 4 git commands to generate.