From: Jarkko Hietaniemi Date: Mon, 26 Feb 2001 13:56:22 +0000 (+0000) Subject: perlglob.exe needs to be found in Win32, patch from X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=508a30f1a485df95340190bcdb5973c1359247c7;p=p5sagit%2Fp5-mst-13.2.git perlglob.exe needs to be found in Win32, patch from Vadim Konovalov. Nick I-S comments: "Perhaps a lingering glob() which needs external glob at mini-perl time." p4raw-id: //depot/perl@8943 --- diff --git a/ext/Encode/compile b/ext/Encode/compile index f6957d2..a688c23 100755 --- a/ext/Encode/compile +++ b/ext/Encode/compile @@ -1,5 +1,8 @@ #!../../perl -w -BEGIN { @INC = '../../lib' }; +BEGIN { + @INC = '../../lib'; + $ENV{PATH} .= ';../..' if $^O eq 'MSWin32'; +} use strict; use Getopt::Std; my @orig_ARGV = @ARGV;