Skip to content

Commit f49762b

Browse files
committed
workaround Alien::Build::MM version check bug
1 parent 11afe4d commit f49762b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Makefile.PL

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use File::Spec;
99
use Alien::Build;
1010
use Alien::Build::MM;
1111

12-
my $alien_build_version = '2.37';
13-
my $ext_makemaker_version = '7.46';
12+
my $alien_build_version = 0;
13+
my $ext_makemaker_version = 0;
1414

1515
my %WriteMakefileArgs = (
1616
NAME => 'Alien::LibJQ',
@@ -21,12 +21,11 @@ my %WriteMakefileArgs = (
2121
BUILD_REQUIRES => {
2222
'Alien::Build' => $alien_build_version,
2323
'ExtUtils::MakeMaker' => $ext_makemaker_version,
24-
'Alien::cmake3' => '0.05',
24+
'Alien::cmake3' => 0,
2525
},
2626
CONFIGURE_REQUIRES => {
2727
'Alien::Build' => $alien_build_version,
2828
'ExtUtils::MakeMaker' => $ext_makemaker_version,
29-
'File::Spec' => 0,
3029
},
3130
# TEST_REQUIRES => {
3231
# 'Test2::V0' => 0,

lib/Alien/LibJQ.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use base qw/Alien::Base/;
55
use vars qw/$VERSION/;
66

7-
$VERSION = '0.03';
7+
$VERSION = '0.04';
88

99
=head1 NAME
1010

0 commit comments

Comments
 (0)