In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d6897368de47e5c4ab8164f57a855a7323021a33?hp=4e73d6a402bc493d66d19c409c41e1e271c6450b>
- Log ----------------------------------------------------------------- commit d6897368de47e5c4ab8164f57a855a7323021a33 Author: Nicholas Clark <[email protected]> Date: Wed Sep 23 13:40:17 2009 +0100 Following b0e687f7 Win32 requires an -Ilib to run pl2bat.pl with miniperl. ----------------------------------------------------------------------- Summary of changes: make_ext.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/make_ext.pl b/make_ext.pl index 373f739..a40b708 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; } -- Perl5 Master Repository
