diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Config.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Config.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/lib/Config.pm b/Master/tlpkg/tlperl/lib/Config.pm index 2c05af8a161..2000dffc07e 100644 --- a/Master/tlpkg/tlperl/lib/Config.pm +++ b/Master/tlpkg/tlperl/lib/Config.pm @@ -54,11 +54,11 @@ sub import { return; } -die "Perl lib version (5.14.2) doesn't match executable '$0' version ($])" +die "Perl lib version (5.16.2) doesn't match executable '$0' version ($])" unless $^V; -$^V eq 5.14.2 - or die "Perl lib version (5.14.2) doesn't match executable '$0' version (" . +$^V eq 5.16.2 + or die "Perl lib version (5.16.2) doesn't match executable '$0' version (" . sprintf("v%vd",$^V) . ")"; @@ -111,5 +111,5 @@ tie %Config, 'Config', { so => 'dll', useithreads => 'define', usevendorprefix => undef, - version => '5.14.2', + version => '5.16.2', }; |