X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=96b26302d642d54cae861955ed368a425843649e;hb=8669cf05ec3965b1aa53cb843e2fd0703e674af7;hp=c1bf647176fbdae8f42070b6b3e88301f40e2064;hpb=7179f93bc7e9aba6051681cd234b669134cc8966;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/Makefile.PL b/Makefile.PL index c1bf647..96b2630 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -74,17 +74,21 @@ my %PREREQ_PM = ( 'base' => 0, ); +my %BUILD_REQUIRES = ( + 'Carp' => 0, + 'Config' => 0, + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'Config' => 0, 'ExtUtils::MakeMaker' => 0, }, build_requires => { - 'Carp' => 0, - 'Config' => 0, - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, - %PREREQ_PM, + %BUILD_REQUIRES, }, dynamic_config => 1, resources => { @@ -103,6 +107,7 @@ WriteMakefile( ABSTRACT_FROM => $file, PL_FILES => {}, @DEFINES, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => '5.008', META_MERGE => \%META,