aboutsummaryrefslogtreecommitdiff
path: root/lang/perl5-devel/files
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2015-06-29 12:32:41 +0000
committerMathieu Arnold <mat@FreeBSD.org>2015-06-29 12:32:41 +0000
commit7397efc8f9de4ff8216261fed16ae8131aa56ba2 (patch)
tree5478437b587c349cb249d39ff5c9d4649429dc41 /lang/perl5-devel/files
parentb174df8758367f6c2e8c9dcd3946d2ead12dc89c (diff)
Notes
Diffstat (limited to 'lang/perl5-devel/files')
-rw-r--r--lang/perl5-devel/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/perl5-devel/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm b/lang/perl5-devel/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm
new file mode 100644
index 000000000000..b84c8fc02b9c
--- /dev/null
+++ b/lang/perl5-devel/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm
@@ -0,0 +1,11 @@
+--- cpan/ExtUtils-Install/lib/ExtUtils/Install.pm.orig 2015-06-22 12:55:33 UTC
++++ cpan/ExtUtils-Install/lib/ExtUtils/Install.pm
+@@ -809,7 +809,7 @@ sub install { #XXX OS-SPECIFIC
+ utime($atime,$mtime + $Is_VMS,$targetfile) unless $dry_run>1;
+
+
+- $mode = 0444 | ( $mode & 0111 ? 0111 : 0 );
++ $mode = 0644 | ( $mode & 0111 ? 0111 : 0 );
+ $mode = $mode | 0222
+ if $realtarget ne $targetfile;
+ _chmod( $mode, $targetfile, $verbose );