X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=14a471e639d27288adca1250168364244407f026;hb=684be1c43567609db6f8ff8b5fade602c30d6ddb;hp=e01587b03ec4d6338791ad6f34701434d3c1ec97;hpb=f580243274068aa24ea552be980e8d647e4e03af;p=catagits%2FCatalyst-Devel.git diff --git a/Makefile.PL b/Makefile.PL index e01587b..14a471e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,7 @@ use strict; use warnings; use lib '.'; +use lib 'inc'; use inc::Module::Install 0.91; use Module::Install::AuthorRequires; use Module::Install::AuthorTests; @@ -38,6 +39,7 @@ if (!$Module::Install::AUTHOR && $^O ne 'MSWin32') { requires 'Module::Install' => '1.02'; author_requires 'IPC::Run3'; +author_requires 'Proc::Background'; author_requires 'Test::Pod'; author_requires 'Test::Pod::Coverage'; @@ -52,9 +54,9 @@ if (!$ENV{CATALYST_DEVEL_NO_510_CHECK}) { use Symbol 'gensym'; use IPC::Open3; use File::Spec; - open NULL, '>', File::Spec->devnull; + open my $null, '>', File::Spec->devnull; my $err = gensym; - my $pid = open3(gensym, '&>NULL', $err, "$^X -It/lib -MUnknownError -e 1"); + my $pid = open3(gensym, $null, $err, qq{"$^X" -It/lib -MUnknownError -e 1}); my $unknown_error = 0;