From: Karen Etheridge Date: Sun, 19 Oct 2014 05:25:40 +0000 (-0700) Subject: specify all prereqs X-Git-Tag: v0.010003~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FApp-FatPacker.git;a=commitdiff_plain;h=ed1c67db6e74083c289ee2ba443f7467bd6e691d specify all prereqs --- diff --git a/Makefile.PL b/Makefile.PL index 56e1faf..18aa8af 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,6 +34,22 @@ WriteMakefile( requires => { # B::perlstring was added in B 1.01 (perl 5.8.0) perl => '5.008000', + 'B' => '1.01', + 'Cwd' => '0', + 'File::Copy' => '0', + 'File::Find' => '0', + 'File::Path' => '0', + 'File::Spec::Functions' => '0', + 'File::Spec::Unix' => '0', + 'Getopt::Long;' => '0', + }, + }, + test => { + requires => { + 'File::Basename' => '0', + 'File::Spec' => '0', + 'File::Temp' => '0', + 'Test::More' => '0', }, }, },