mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
A few important changes: - '.' is no longer in @INC. - "do" now gives a deprecation warning when it fails to load a file which it would have loaded had "." been in @INC. - In regular expression patterns, a literal left brace "{" should be escaped. Changes: https://metacpan.org/pod/release/XSAWYERX/perl-5.26.0/pod/perldelta.pod Sponsored by: Absolight
11 lines
532 B
Raku
11 lines
532 B
Raku
--- 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 );
|