summaryrefslogtreecommitdiff
path: root/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm
diff options
context:
space:
mode:
authorDaniel Dragan <bulk88@hotmail.com>2015-12-23 01:10:59 -0500
committerTony Cook <tony@develop-help.com>2016-01-25 11:11:49 +1100
commitec999ab1a3e2ad68a275da8cb499e366b06f35cf (patch)
tree74b6bd87d69031fe162230394035bdee30c569eb /cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm
parenta766b711cb8fa942bb620f6e525dad33e44976f8 (diff)
downloadperl-ec999ab1a3e2ad68a275da8cb499e366b06f35cf.tar.gz
backport EUMM commits
-commit "Cache is_make_type" and "Optimise is_make_type RE" stops 40 executions of "gmake.exe -v" process for each Makefile.PL run, these 40 make process launches make it it very difficult to debug make_ext.pl and the make tool with a system call logger, see Perl RT #123440 ticket for details -commit "Win32 gmake needs SHELL to be specified" allows Win32 perl to be built with gmake, if msysgit is in the PATH env var, without this patch gmake will use bash as the shell instead of cmd.exe and no EUMM modules can be built during a Win32 perl build, since bash and cmd.exe command line strings are not compatible with each other, see Perl RT #123440 ticket for details
Diffstat (limited to 'cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm')
-rw-r--r--cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm
index c58e0a5bc4..fa5f72c5f3 100644
--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm
+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm
@@ -3,7 +3,7 @@ package ExtUtils::MM;
use strict;
use ExtUtils::MakeMaker::Config;
-our $VERSION = '7.10';
+our $VERSION = '7.10_01';
require ExtUtils::Liblist;
require ExtUtils::MakeMaker;