summaryrefslogtreecommitdiff
path: root/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-09-23 18:27:33 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2013-09-23 18:27:33 +0100
commitc6ba15252667d61624481a75c7b61acee4e89cb3 (patch)
treeb814b257d03fa98fc55b7613b51336dacaed01ee /cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm
parentc7a5ab2295268a0a954737f6575ae246e38faf3f (diff)
downloadperl-c6ba15252667d61624481a75c7b61acee4e89cb3.tar.gz
Update ExtUtils-MakeMaker to CPAN version 6.78
[DELTA] 6.78 Mon Sep 23 13:44:39 BST 2013 No changes from 6.77_08 6.77_08 Sun Sep 22 18:43:23 BST 2013 New feature: * Made UNINST an attribute, so removing shadowed modules can be set 'perl Makefile.PL UNINST=1' 6.77_07 Sat Sep 21 09:44:19 BST 2013 Bug fixes: * do not set default switches in Test::Harness; not even -w 6.77_06 Thu Sep 19 15:36:59 BST 2013 Dist fixes: * Previous tarball was corrupted 6.77_05 Thu Sep 19 14:09:00 BST 2013 Bug fixes: * Fix 3 more tests to work in parallel. Now works with HARNESS_OPTIONS=j64 6.77_04 Wed Sep 18 19:23:38 BST 2013 Bug fixes: * Fixed PERL_SRC for core tests after parallelisation enhancements were made in 6.77_01 6.77_03 Mon Sep 16 12:20:25 BST 2013 VMS fixes: * CCFLAGS may have appendages not from PERL_MM_OPT 6.77_02 Thu Sep 12 21:21:12 BST 2013 Bug fixes: * Support 'perl' as a PREREQ_PM target * RT#77029 Support linefeeds in abstract parsing * Skip some tests when cross-compiling core 6.77_01 Tue Sep 10 15:20:42 BST 2013 Bug fixes: * RT#7248 warn if NAME is not valid package name * Perl#36539 reverse search order for finding perl * parse_version() should work with taint mode now * RT#69590 enable tests to be run in parallel
Diffstat (limited to 'cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm')
-rw-r--r--cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm
index 7e20b22eb0..7630844fe0 100644
--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm
+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm
@@ -1,7 +1,7 @@
package ExtUtils::MM_Any;
use strict;
-our $VERSION = '6.76';
+our $VERSION = '6.78';
use Carp;
use File::Spec;
@@ -2366,8 +2366,8 @@ Used on the t/*.t files.
sub test_via_harness {
my($self, $perl, $tests) = @_;
- return qq{\t$perl "-MExtUtils::Command::MM" }.
- qq{"-e" "test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n};
+ return qq{\t$perl "-MExtUtils::Command::MM" "-MTest::Harness" }.
+ qq{"-e" "undef *Test::Harness::Switches; test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n};
}
=head3 test_via_script