From: Karen Etheridge Date: Tue, 26 Mar 2013 03:58:10 +0000 (-0700) Subject: fix NAME entry in Makefile.PL (RT#84212) X-Git-Tag: v1.000003~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSafe-Isa.git;a=commitdiff_plain;h=dcf9b5b375317c609bbfb4277f19d966133c5ed7 fix NAME entry in Makefile.PL (RT#84212) --- diff --git a/Changes b/Changes index 913b28f..562f8c5 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - fix NAME in Makefile.PL (RT#84212) + 1.000002 - 2012-07-19 - Document why we don't try and handle class namesZ - Missed another stupid doc typo (thanks MJD) diff --git a/Makefile.PL b/Makefile.PL index 1dc4da0..9add5bf 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,6 +5,6 @@ use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( - NAME => 'Safe-Isa', + NAME => 'Safe::Isa', VERSION_FROM => 'lib/Safe/Isa.pm', );