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 /cpan/ExtUtils-Manifest | |
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
Diffstat (limited to 'cpan/ExtUtils-Manifest')
-rw-r--r-- | cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm | 4 |
1 files changed, 2 insertions, 2 deletions
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; |