diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Module/Load/Conditional.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Module/Load/Conditional.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/Module/Load/Conditional.pm b/Master/tlpkg/tlperl/lib/Module/Load/Conditional.pm index 422f56b4d5c..ace55ad845d 100644 --- a/Master/tlpkg/tlperl/lib/Module/Load/Conditional.pm +++ b/Master/tlpkg/tlperl/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; |