diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-21 08:11:13 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-21 08:47:14 +0000 |
commit | 1487aac67a72b9f87b24113f65b4d878401bee33 (patch) | |
tree | 34fb3fe504370630d5bec34ea41a4c1019e3ac25 /lib/ExtUtils/MM_Any.pm | |
parent | 7f336194cfaf185f017d3850e370623e7a703691 (diff) | |
download | perl-1487aac67a72b9f87b24113f65b4d878401bee33.tar.gz |
Upgrade to ExtUtils::MakeMaker 6.49_01
Diffstat (limited to 'lib/ExtUtils/MM_Any.pm')
-rw-r--r-- | lib/ExtUtils/MM_Any.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_Any.pm b/lib/ExtUtils/MM_Any.pm index 2cee73fd8d..69b63a53d1 100644 --- a/lib/ExtUtils/MM_Any.pm +++ b/lib/ExtUtils/MM_Any.pm @@ -1,7 +1,7 @@ package ExtUtils::MM_Any; use strict; -our $VERSION = '6.48_01'; +our $VERSION = '6.49_01'; use Carp; use File::Spec; @@ -354,7 +354,7 @@ to do some normalization on the information from %Config or the user. sub make { my $self = shift; - my $make = lc($self->{MAKE}|| ''); + my $make = lc $self->{MAKE}; # Truncate anything like foomake6 to just foomake. $make =~ s/^(\w+make).*/$1/; @@ -832,6 +832,10 @@ sub metafile_data { 'ExtUtils::MakeMaker' => 0 }, + build_requires => { + 'ExtUtils::MakeMaker' => 0 + }, + no_index => { directory => [qw(t inc)] }, |