From: Dagfinn Ilmari Mannsåker Date: Thu, 14 Mar 2013 14:35:21 +0000 (+0000) Subject: Fix module name in Makefile.PL (RT#83932) X-Git-Tag: v0.001010~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSub-Exporter-Progressive.git;a=commitdiff_plain;h=2bd70cbd704cfdfeb090066c3433670b3e17ebbc Fix module name in Makefile.PL (RT#83932) --- diff --git a/Changes b/Changes index 89b6bd1..bbe016c 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - Fix module name in Makefile.PL (RT#83932) + 0.001009 - 2013-03-12 - disallow version names in random parts of the import list for consistency with Sub::Exporter (Toby Inkster) diff --git a/Makefile.PL b/Makefile.PL index bf252b4..6312e88 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,7 +27,7 @@ my $mymeta_works = eval { ExtUtils::MakeMaker->VERSION('6.5707'); 1 }; my $mymeta = $mymeta_works || eval { ExtUtils::MakeMaker->VERSION('6.5702'); 1 }; my %WriteMakefileArgs = ( - NAME => 'Sub-Exporter-Progressive', + NAME => 'Sub::Exporter::Progressive', VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm', ABSTRACT_FROM => 'lib/Sub/Exporter/Progressive.pm', LICENSE => 'perl',