From: Chris Nehren Date: Tue, 7 Aug 2012 19:13:40 +0000 (+0000) Subject: Some Makefile.PL fixes: X-Git-Tag: v0.001_001~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3e555cfc92cfb756f97a6e232d39f1d6080fda55;p=scpubgit%2FSystem-Introspector.git Some Makefile.PL fixes: * fix => in definition of %build_requires so it actually works * Add Module::Metadata to %requires * Specify Capture::Tiny version for capture_stderr --- diff --git a/Makefile.PL b/Makefile.PL index 35aab3f..3bc1dbf 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use warnings; use ExtUtils::MakeMaker; -my %build_requires => ( +my %build_requires = ( 'Test::More' => 0, ); @@ -11,6 +11,7 @@ my %requires = ( 'Moo' => 0.009013, 'File::Path' => 0, 'File::Basename' => 0, + 'Module::Metadata' => 0, 'Module::Runtime' => 0, 'Data::YAML::Writer' => 0, 'Object::Remote' => 0, @@ -21,7 +22,7 @@ my %requires = ( 'Digest::SHA' => 0, 'strictures' => 1, 'IPC::Run' => 0, - 'Capture::Tiny' => 0, + 'Capture::Tiny' => 0.12, # capture_stderr 'File::Tree::Snapshot' => 0, 'Object::Remote' => 0, 'JSON::Diffable' => 0,