From: Nicholas Clark Date: Wed, 23 Sep 2009 14:12:52 +0000 (+0100) Subject: Correct d6897368 - Win32 requires the correct path for -I for lib/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d7f84378c13a9837fe0c62fb453daaf10ca81abf;p=p5sagit%2Fp5-mst-13.2.git Correct d6897368 - Win32 requires the correct path for -I for lib/ --- diff --git a/make_ext.pl b/make_ext.pl index a40b708..61945c4 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, '-Ilib', ("$pl2bat.pl") x 2); + my @args = ($perl, "-I$topdir\\lib", ("$pl2bat.pl") x 2); print "@args\n"; system(@args) unless defined $::Cross::platform; }