diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/ExtUtils/Command.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/ExtUtils/Command.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/Command.pm b/Master/tlpkg/tlperl/lib/ExtUtils/Command.pm index c5101c37b7d..e36453608ef 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/Command.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/Command.pm @@ -2,12 +2,13 @@ package ExtUtils::Command; use 5.00503; use strict; +use warnings; require Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); @ISA = qw(Exporter); @EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod dos2unix); -$VERSION = '7.44'; +$VERSION = '7.62'; $VERSION =~ tr/_//d; my $Is_VMS = $^O eq 'VMS'; |