From: David Golden Date: Wed, 8 Feb 2012 16:57:32 +0000 (-0500) Subject: Make all prereqs explicit in Makefile.PL X-Git-Tag: release_1.0.9~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FModule-Metadata.git;a=commitdiff_plain;h=8f9f6d2716b02b5fab47c27a7df64947ca66b470 Make all prereqs explicit in Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL index 48818f9..6330b32 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,7 +8,13 @@ WriteMakefile( NAME => 'Module::Metadata', VERSION_FROM => 'lib/Module/Metadata.pm', PREREQ_PM => { - 'Carp' => 0, - 'version' => 0.87, + 'Carp' => 0, + 'File::Find' => 0, + 'File::Spec' => 0, + 'IO::File' => 0, + 'strict' => 0, + 'vars' => 0, + 'version' => 0.87, + 'warnings' => 0, }, );