From: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Date: Mon, 3 Apr 2017 16:58:45 +0000 (+0100)
Subject: Make META->{no_index}->{package} an array
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c33e632e4268f042c5c6bc98919fe4ef3246e270;p=scpubgit%2FQ-Branch.git

Make META->{no_index}->{package} an array

CPAN::Meta::Converter fixes it, but might as well make it right from
the beginning.
---

diff --git a/Makefile.PL b/Makefile.PL
index 0a54504..8dbc4a2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -61,7 +61,7 @@ my %META = (
     license => [ 'http://dev.perl.org/licenses/' ],
   },
   no_index => {
-    package => 'DBIx::Class::Storage::Debug::PrettyPrint',
+    package => [ 'DBIx::Class::Storage::Debug::PrettyPrint' ],
     directory => [ 't', 'xt', 'examples' ],
   },
 );