Skip to content

Commit

Permalink
Need to use $] for 5.008
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Jun 2, 2023
1 parent 70471e0 commit 56836d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.PL
Expand Up @@ -145,7 +145,9 @@ my %WriteMakefile = (
clean => { FILES => "$dist-*" },
);

$WriteMakefile{PREREQ_PM}{'MIME::Parser'} = 0 if $^V >= v5.12.0;
# This module uses Test::Deep, which has a dependency that requires
# v5.12.
$WriteMakefile{PREREQ_PM}{'MIME::Parser'} = 0 if $] >= 5.012;

sub arguments { \%WriteMakefile }

Expand Down

0 comments on commit 56836d8

Please sign in to comment.