]> git.pld-linux.org Git - packages/perl.git/commitdiff
- updated for 6.32 auto/th/perl-ExtUtils-MakeMaker-6_32-1 auto/ti/perl-ExtUtils-MakeMaker-6_32-1
authorradek <radek@pld-linux.org>
Tue, 8 May 2007 16:25:35 +0000 (16:25 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-ExtUtils-MakeMaker-write-permissions.patch -> 1.2

perl-ExtUtils-MakeMaker-write-permissions.patch

index 6fa5a9e742c007fa23590b2b2c20928006c28b1d..ee1402ad8822241a8f5b27b23cff220328be5718 100644 (file)
@@ -1,21 +1,20 @@
-diff -Nur ExtUtils-MakeMaker-6.30.orig/lib/ExtUtils/Install.pm ExtUtils-MakeMaker-6.30.write-permissions/lib/ExtUtils/Install.pm
---- 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";
+--- ExtUtils-MakeMaker-6.32/inc/ExtUtils/Install.pm~   2007-05-08 18:19:32.000000000 +0200
++++ ExtUtils-MakeMaker-6.32/inc/ExtUtils/Install.pm    2007-05-08 18:22:09.376990824 +0200
+@@ -652,7 +652,7 @@
                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 @@
+-                $mode = 0444 | ( $mode & 0111 ? 0111 : 0 );
++                $mode = 0644 | ( $mode & 0111 ? 0111 : 0 );
+                 $mode = $mode | 0222
+                     if $realtarget ne $targetfile;
+                 _chmod( $mode, $targetfile, $verbose );
+@@ -1013,7 +1013,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);
+-      _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.125381 seconds and 4 git commands to generate.