X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Temp.git;a=blobdiff_plain;f=Makefile.PL;h=93f9b639a02afa770e07ce1db754759924003099;hp=31cc6b1984f479ea2961a14d04c5c8f4f8540b7b;hb=4e16d31366a5659d17e1962fcf1a3507601e22b1;hpb=553f9a1671d2e7d218a17eff743faae54b80aaa1 diff --git a/Makefile.PL b/Makefile.PL index 31cc6b1..93f9b63 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -18,13 +18,19 @@ my %PREREQ_PM = ( 'base' => 0, ); +my %BUILD_REQUIRES = ( + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + 'lib' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, }, build_requires => { - 'ExtUtils::MakeMaker' => 0, - %PREREQ_PM, + %BUILD_REQUIRES, }, dynamic_config => 0, resources => { @@ -42,6 +48,7 @@ WriteMakefile( VERSION_FROM => $file, ABSTRACT_FROM => $file, PL_FILES => {}, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => '5.006', META_MERGE => \%META,