diff options
author | Craig A. Berry <craigberry@mac.com> | 2013-10-10 22:26:09 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2013-10-10 22:26:09 -0500 |
commit | 6abc795d59ba3bc491a38d098341fe89123095db (patch) | |
tree | efd8e466b4eecd395a1d4cc0dcb6ef49f060d1c3 /cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command | |
parent | 821079480d800d4cfa465abd0227b94e3f4a1624 (diff) | |
download | perl-6abc795d59ba3bc491a38d098341fe89123095db.tar.gz |
Update to ExtUtils::MakeMaker 6.79_01.
Only one change:
* Remove MM_TEST_ROOT feature for VMS test support
This feature depended on test directories created on the fly being
in a predictable location at a predictable depth, but as of 6.78
they aren't anymore, which caused a significant number of test
failures on VMS.
Diffstat (limited to 'cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command')
-rw-r--r-- | cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm index 41423773b6..880ae24f46 100644 --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm @@ -10,7 +10,7 @@ our @ISA = qw(Exporter); our @EXPORT = qw(test_harness pod2man perllocal_install uninstall warn_if_old_packlist); -our $VERSION = '6.78'; +our $VERSION = '6.79_01'; my $Is_VMS = $^O eq 'VMS'; |