summaryrefslogtreecommitdiff
path: root/make_ext.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-23 13:40:17 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-23 13:41:03 +0100
commitd6897368de47e5c4ab8164f57a855a7323021a33 (patch)
tree134ff206725b142b5e44cafd3c75eec66891912d /make_ext.pl
parent4e73d6a402bc493d66d19c409c41e1e271c6450b (diff)
downloadperl-d6897368de47e5c4ab8164f57a855a7323021a33.tar.gz
Following b0e687f7 Win32 requires an -Ilib to run pl2bat.pl with miniperl.
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 373f739de3..a40b708b84 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -163,7 +163,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, ("$pl2bat.pl") x 2);
+ my @args = ($perl, '-Ilib', ("$pl2bat.pl") x 2);
print "@args\n";
system(@args) unless defined $::Cross::platform;
}