diff options
Diffstat (limited to 'Makefile.PL')
-rwxr-xr-x | Makefile.PL | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.PL b/Makefile.PL index 28e7e04..8932818 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,10 @@ use strict; use ExtUtils::MakeMaker; +our %CONFIGURE_REQUIRES = ( + 'ExtUtils::MakeMaker' => '6.64', +); + # where to find the rpm utility my $rpm_path = $ENV{RPM_PATH}; # this overrides @@ -45,9 +49,7 @@ WriteMakefile( ABSTRACT_FROM => 'URPM.pm', AUTHOR => 'Thierry Vignaud', LICENSE => 'perl_5', - CONFIGURE_REQUIRES => { - 'ExtUtils::MakeMaker' => '6.64', - }, + CONFIGURE_REQUIRES => \%CONFIGURE_REQUIRES, PREREQ_PM => { 'MDV::Packdrakeng' => '1.00', # for URPM::Build }, |