summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorLeon Timmermans <fawaka@gmail.com>2019-04-25 16:40:51 +0200
committerKarl Williamson <khw@cpan.org>2020-07-30 15:21:41 -0600
commit88e7da03bb1b3db825a32e23f0178f484d169a08 (patch)
treecdbeb922da16d96e04362aaab87216c96c4fb101 /make_ext.pl
parentc2aeacd2c1c48d0a64382e19ce4ef4df981afd55 (diff)
downloadperl-88e7da03bb1b3db825a32e23f0178f484d169a08.tar.gz
Force path to ExtUtils::PL2Bat in make_ext.pl
Diffstat (limited to 'make_ext.pl')
-rw-r--r--make_ext.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/make_ext.pl b/make_ext.pl
index 87f8bf3b28..ce3debd603 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -168,7 +168,7 @@ if (IS_WIN32) {
$ENV{PATH} = "$topdir;$topdir\\win32\\bin;$ENV{PATH}";
my $pl2bat = "$topdir\\win32\\bin\\pl2bat";
unless (-f "$pl2bat.bat") {
- my @args = ($perl, "-I$topdir\\lib", ("$pl2bat.pl") x 2);
+ my @args = ($perl, "-I$topdir\\lib", "-I$topdir\\cpan\\ExtUtils-PL2Bat\\lib", ("$pl2bat.pl") x 2);
print "@args\n" if $verbose;
system(@args) unless IS_CROSS;
}