From: Stevan Little <stevan.little@iinteractive.com>
Date: Tue, 15 Apr 2008 20:37:57 +0000 (+0000)
Subject: fixing makefile error
X-Git-Tag: 0.04~32
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f1c9e103880a078d6d95d99491034d64951e7b13;p=gitmo%2FMooseX-MetaDescription.git

fixing makefile error
---

diff --git a/Makefile.PL b/Makefile.PL
index 567dbfe..256526a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 use inc::Module::Install;
 
-name 'MooseX::MetaDescription';
+name 'MooseX-MetaDescription';
 all_from 'lib/MooseX/MetaDescription.pm';
 license 'perl';
 
@@ -10,7 +10,7 @@ license 'perl';
 requires 'Moose' => 0.40;
 
 # things the tests need
-build_requires 'Test::More'      => '0.62';
+build_requires 'Test::More' => '0.62';
 
 tests('t/*.t');