LICENSE was added to ExtUtils::MakeMaker in 6.31, not 6.30
Nicholas Clark [Sun, 17 Apr 2011 16:38:29 +0000 (17:38 +0100)]
CHANGES
Makefile.PL

diff --git a/CHANGES b/CHANGES
index dfd6840..7fe1b4b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Revision history for Perl extension Devel::Size.
 
+0.74 2011-04-18 nicholas
+ * Correct the Makefile.PL - LICENSE was added to ExtUtils::MakeMaker in 6.31
+
 0.73_51 2011-04-17 nicholas
  * Refactor the C code to accumulate the size inside the tracking structure
    - this means that the C *_size() functions now return void
index 935ad2b..2066fe8 100644 (file)
@@ -5,5 +5,5 @@ WriteMakefile(
   NAME => 'Devel::Size',
   VERSION_FROM => 'lib/Devel/Size.pm',
   ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()),
-  ($ExtUtils::MakeMaker::VERSION >= 6.30 ? (LICENSE => 'perl') : ()),
+  ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()),
 );