diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-01-17 16:12:41 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-01-17 16:12:41 +0000 |
commit | a1f2a8e1cd00212abafa68f24524f23f9a6b0efb (patch) | |
tree | acbc4163a545e92d17351e1c0d5feb62bb17af72 /cpan/Module-Load-Conditional | |
parent | bc1644f1ea23213883e5ccb511a8df05762b7e39 (diff) | |
download | perl-a1f2a8e1cd00212abafa68f24524f23f9a6b0efb.tar.gz |
Update Module-Load-Conditional to CPAN version 0.64
[DELTA]
0.64 Sat Jan 17 13:33:57 GMT 2015
* Resolve an edge-case with DEPRECATED
[ https://rt.cpan.org/Public/Bug/Display.html?id=101555 ]
Diffstat (limited to 'cpan/Module-Load-Conditional')
-rw-r--r-- | cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm index 422f56b4d5..ace55ad845 100644 --- a/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm +++ b/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm @@ -22,7 +22,7 @@ BEGIN { $FIND_VERSION $ERROR $CHECK_INC_HASH]; use Exporter; @ISA = qw[Exporter]; - $VERSION = '0.62'; + $VERSION = '0.64'; $VERBOSE = 0; $DEPRECATED = 0; $FIND_VERSION = 1; @@ -313,7 +313,8 @@ sub check_install { $href->{uptodate} = 0 if exists $Module::CoreList::version{ 0+$] }{ $args->{module} } and Module::CoreList::is_deprecated( $args->{module} ) and - $Config::Config{privlibexp} eq $href->{dir}; + $Config::Config{privlibexp} eq $href->{dir} + and $Config::Config{privlibexp} ne $Config::Config{sitelibexp}; } return $href; |