diff options
author | Steve Peters <steve@fisharerojo.org> | 2008-02-29 05:09:27 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2008-02-29 05:09:27 +0000 |
commit | 3040be6a415f361cc7e13b534fe2c76ffb948e23 (patch) | |
tree | ad0876b9eb2da660d2f396a6532d381261c832e5 /lib/ExtUtils/MM_Unix.pm | |
parent | cd06ac219ef831952aed7fd07ecb84397b1b7bce (diff) | |
download | perl-3040be6a415f361cc7e13b534fe2c76ffb948e23.tar.gz |
Upgrade to ExtUtils-MakeMaker-6.44
p4raw-id: //depot/perl@33396
Diffstat (limited to 'lib/ExtUtils/MM_Unix.pm')
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 51951d4a75..e9114e1236 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -15,7 +15,7 @@ use ExtUtils::MakeMaker qw($Verbose neatvalue); # If we make $VERSION an our variable parse_version() breaks use vars qw($VERSION); -$VERSION = '6.43_02'; +$VERSION = '6.44'; require ExtUtils::MM_Any; our @ISA = qw(ExtUtils::MM_Any); @@ -2451,7 +2451,7 @@ $(MAKE_APERL_FILE) : $(FIRST_MAKEFILE) pm_to_blib push @$extra, $_; } - map(s/^(.*)/"-I$1"/, @{$perlinc || []}); + s/^(.*)/"-I$1"/ for @{$perlinc || []}; $target ||= "perl"; $tmp ||= "."; |