summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Config.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm b/Master/tlpkg/tlperl/lib/Config.pm
index 779cf2da000..261fdceb3c7 100644
--- a/Master/tlpkg/tlperl/lib/Config.pm
+++ b/Master/tlpkg/tlperl/lib/Config.pm
@@ -10,7 +10,7 @@ use strict;
use warnings;
use vars '%Config', '$VERSION';
-$VERSION = "5.022001";
+$VERSION = "5.024001";
# Skip @Config::EXPORT because it only contains %Config, which we special
# case below as it's not a function. @Config::EXPORT won't change in the
@@ -56,11 +56,11 @@ sub import {
return;
}
-die "$0: Perl lib version (5.22.1) doesn't match executable '$^X' version ($])"
+die "$0: Perl lib version (5.24.1) doesn't match executable '$^X' version ($])"
unless $^V;
-$^V eq 5.22.1
- or die sprintf "%s: Perl lib version (5.22.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
+$^V eq 5.24.1
+ or die sprintf "%s: Perl lib version (5.24.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
sub FETCH {
@@ -112,5 +112,5 @@ tie %Config, 'Config', {
so => 'dll',
useithreads => 'define',
usevendorprefix => undef,
- version => '5.22.1',
+ version => '5.24.1',
};