]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
Add BUILD_REQUIRES to WriteMakefile()
authorVincent Pit <vince@profvince.com>
Fri, 2 Nov 2012 01:21:01 +0000 (23:21 -0200)
committerVincent Pit <vince@profvince.com>
Fri, 2 Nov 2012 01:21:01 +0000 (23:21 -0200)
Makefile.PL

index 1e8cc00886fa837b51bcfa2cf6def79d4c2841b5..e08782759ac288572e9d0bc5af9903fecca15e6d 100644 (file)
@@ -93,6 +93,14 @@ my %PREREQ_PM = (
  'base'     => 0,
 );
 
+my %BUILD_REQUIRES = (
+ 'Config'              => 0,
+ 'ExtUtils::MakeMaker' => 0,
+ 'File::Spec'          => 0,
+ 'Test::More'          => 0,
+ %PREREQ_PM,
+);
+
 my %META = (
  configure_requires => {
   'Config'              => 0,
@@ -100,10 +108,7 @@ my %META = (
   'File::Spec'          => 0,
  },
  build_requires => {
-  'Config'              => 0,
-  'ExtUtils::MakeMaker' => 0,
-  'Test::More'          => 0,
-  %PREREQ_PM,
+  %BUILD_REQUIRES,
  },
  dynamic_config => 1,
  resources => {
@@ -123,6 +128,7 @@ WriteMakefile(
  PL_FILES         => {},
  C                => \@C,
  @DEFINES,
+ BUILD_REQUIRES   => \%BUILD_REQUIRES,
  PREREQ_PM        => \%PREREQ_PM,
  MIN_PERL_VERSION => '5.006',
  META_MERGE       => \%META,