Skip to content

Commit 7a34f78

Browse files
committed
Combine similar Makefile.PL code
1 parent c22e339 commit 7a34f78

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Makefile.PL

+6-7
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ my %args = (
3333
},
3434
);
3535

36-
# Merge BUILD_REQUIRES into PREREQ_PM if EU::MM is too old to understand.
37-
$args{PREREQ_PM} = { %{ $args{PREREQ_PM} }, %{ delete $args{BUILD_REQUIRES} } }
38-
unless eval { ExtUtils::MakeMaker->VERSION('6.55_03') };
39-
40-
# Merge TEST_REQUIRES into PREREQ_PM if EU::MM is too old to understand.
41-
$args{PREREQ_PM} = { %{ $args{PREREQ_PM} }, %{ delete $args{TEST_REQUIRES} } }
42-
unless eval { ExtUtils::MakeMaker->VERSION('6.64') };
36+
# Merge *_REQUIRES into PREREQ_PM if EU::MM is too old to understand.
37+
for ( [ BUILD_REQUIRES => '6.55_03' ], [ TEST_REQUIRES => '6.64' ] ) {
38+
my ( $key, $ver ) = @$_;
39+
$args{PREREQ_PM} = { %{ $args{PREREQ_PM} }, %{ delete $args{$key} } }
40+
unless eval { ExtUtils::MakeMaker->VERSION($ver) };
41+
}
4342

4443
WriteMakefile(%args);
4544

0 commit comments

Comments
 (0)