Skip to content

Commit bcc04c2

Browse files
toddrLeont
authored andcommitted
Include relative path for do in Build/Makefile.PL will function without . in @inc
1 parent d659ee6 commit bcc04c2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Build.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use lib File::Spec->catdir('t', 'bundled'); # use bundled modules
1515
use lib File::Spec->catdir('t', 'lib'); # our utilities
1616

1717
# bootstrap configure_requires prereqs
18-
BEGIN { do 'inc/bootstrap.pl' }
18+
BEGIN { do './inc/bootstrap.pl' }
1919

2020
# We use Module::Build to test & install itself.
2121
use Module::Build;

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Revision history for Perl extension Module::Build.
22

33
0.42_21 -
44

5+
- Include relative path for do in Build/Makefile.PL will function without . in @INC [Todd Rinaldo]
6+
57
0.4220 - Tue Aug 16 22:11:14 CEST 2016
68

79
- Released 0.42_19 as 0.4220

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use 5.006001;
88
use lib qw(lib);
99

1010
# bootstrap configure_requires prereqs
11-
BEGIN { do 'inc/bootstrap.pl' or die defined($@) ? $@ : $! }
11+
BEGIN { do './inc/bootstrap.pl' or die defined($@) ? $@ : $! }
1212

1313
use Module::Build::Compat;
1414

0 commit comments

Comments
 (0)