X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=33d3290e19ffb7331aa76130b10c89c92d41df81;hb=dcc300c85d8832a6e0ad6852f68ea4ec5899348d;hp=50e5e148fcc716a1d1c30eb5d79d52c362475b42;hpb=ca5036199c5ed4b72e81ea0031887eddf804155c;p=perl%2Fmodules%2FScope-Upper.git diff --git a/Makefile.PL b/Makefile.PL index 50e5e14..33d3290 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -40,15 +40,19 @@ my %PREREQ_PM = ( 'base' => 0, ); +my %BUILD_REQUIRES = ( + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'Config' => 0, 'ExtUtils::MakeMaker' => 0, }, build_requires => { - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, - %PREREQ_PM, + %BUILD_REQUIRES, }, dynamic_config => 1, resources => { @@ -67,6 +71,7 @@ WriteMakefile( ABSTRACT_FROM => $file, PL_FILES => {}, @DEFINES, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => '5.006', META_MERGE => \%META,