diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2014-09-16 18:31:23 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2014-09-16 18:54:48 +0100 |
commit | a65806443486002454b94ddaa28f8c9cb2eb9859 (patch) | |
tree | 65f71e7dfca7c92fd5e15f27b8c102cbdac25c9e | |
parent | dffc502431a92571665171f2d25d28f95339feec (diff) | |
download | perl-a65806443486002454b94ddaa28f8c9cb2eb9859.tar.gz |
Update ExtUtils-Manifest to CPAN version 1.68
[DELTA]
1.68 Tue, Sep 16, 2014
- Fix regression with manifind() and following symlinks
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 8f30a747d9..b8b8cf5585 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -490,7 +490,7 @@ use File::Glob qw(:case); }, 'ExtUtils::Manifest' => { - 'DISTRIBUTION' => 'BINGOS/ExtUtils-Manifest-1.66.tar.gz', + 'DISTRIBUTION' => 'BINGOS/ExtUtils-Manifest-1.68.tar.gz', 'FILES' => q[cpan/ExtUtils-Manifest], 'EXCLUDED' => [qr(^xt/)], }, diff --git a/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm b/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm index 6e0e83813c..ce0007be6f 100644 --- a/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm +++ b/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm @@ -10,7 +10,7 @@ use Carp; use strict; use warnings; -our $VERSION = '1.66'; +our $VERSION = '1.68'; our @ISA = ('Exporter'); our @EXPORT_OK = qw(mkmanifest manicheck filecheck fullcheck skipcheck @@ -195,7 +195,7 @@ sub manifind { # $File::Find::name is unavailable. # Also, it's okay to use / here, because MANIFEST files use Unix-style # paths. - find({wanted => $wanted, follow => 1}, + find({wanted => $wanted, follow_fast => 1}, $Is_MacOS ? ":" : "."); return $found; |