summaryrefslogtreecommitdiff
path: root/cpan/Module-Build/lib/Module/Build.pm
diff options
context:
space:
mode:
authorDavid Golden <dagolden@cpan.org>2010-01-19 21:33:35 -0500
committerDavid Golden <dagolden@cpan.org>2010-01-19 21:33:35 -0500
commit7dc9e1b44427ddd72c25f7d40cea4e597b6b55c8 (patch)
tree3448cec96bad320d4108ac3bd26440befb03b62e /cpan/Module-Build/lib/Module/Build.pm
parent81fc59efbb1a08ca114afd7063c6d7630d321552 (diff)
downloadperl-7dc9e1b44427ddd72c25f7d40cea4e597b6b55c8.tar.gz
Update Module::Build to 0.3603
0.3603 - Mon Jan 18 22:28:59 EST 2010 Bug fixes: - Module::Build::Compat would croak on distibutions that set requires 'perl' to a dotted decimal like '5.6.2'. We now skip that key since it doesn't go into PREREQ_PM and we numify it properly for 'use 5.006002' in the generated Makefile.PL (RT#53409) [David Golden, adapted from patch by G. Allen Morris III] 0.3602 - Mon Jan 18 22:09:54 EST 2010 Bug fixes: - Fix failures in t/properties/needs_compiler.t when $ENV{CC} is set (RT#53296) [David Golden, adapted from patch by Jens Rehsack] 0.3601 - Mon Dec 21 14:39:33 EST 2009 Bug fixes: - When the currently running Module::Build is not the same as the one that created the Build file, there is now a warning rather than a fatal error. This helps installation of dependency chains where a dependency might configure_requires a new Module::Build after Build.PL was already run for an earlier distribution. [David Golden, on advice of Matt Trout] Other: - t/bundle_inc.t fails in odd ways. This test of an experimental feature should not prevent users from installing Module::Build, so this test now skips unless $ENV{MB_TEST_EXPERIMENTAL} is true
Diffstat (limited to 'cpan/Module-Build/lib/Module/Build.pm')
-rw-r--r--cpan/Module-Build/lib/Module/Build.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpan/Module-Build/lib/Module/Build.pm b/cpan/Module-Build/lib/Module/Build.pm
index 517a4a624b..356fd42a14 100644
--- a/cpan/Module-Build/lib/Module/Build.pm
+++ b/cpan/Module-Build/lib/Module/Build.pm
@@ -15,7 +15,7 @@ use Module::Build::Base;
use vars qw($VERSION @ISA);
@ISA = qw(Module::Build::Base);
-$VERSION = '0.36';
+$VERSION = '0.3603';
$VERSION = eval $VERSION;
# Okay, this is the brute-force method of finding out what kind of
@@ -750,7 +750,8 @@ false to prevent the custom resource file from being loaded.
Suppresses the check upon startup that the version of Module::Build
we're now running under is the same version that was initially invoked
when building the distribution (i.e. when the C<Build.PL> script was
-first run). Use with caution.
+first run). As of 0.3601, a mismatch results in a warning instead of
+a fatal error, so this option effectively just suppresses the warning.
=item debug