diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-26 13:56:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-26 13:56:22 +0000 |
commit | 508a30f1a485df95340190bcdb5973c1359247c7 (patch) | |
tree | 9a048ded7ce0b92f6d5aa0408effe3b7cedc5ecc /ext | |
parent | b86471a16155a412113ae4858b502516c48050a1 (diff) | |
download | perl-508a30f1a485df95340190bcdb5973c1359247c7.tar.gz |
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
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/Encode/compile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/Encode/compile b/ext/Encode/compile index f6957d260b..a688c23962 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; |