This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlglob.exe needs to be found in Win32, patch from
authorJarkko Hietaniemi <jhi@iki.fi>
Mon, 26 Feb 2001 13:56:22 +0000 (13:56 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 26 Feb 2001 13:56:22 +0000 (13:56 +0000)
Vadim Konovalov.  Nick I-S comments: "Perhaps a lingering glob()
which needs external glob at mini-perl time."

p4raw-id: //depot/perl@8943

ext/Encode/compile

index f6957d2..a688c23 100755 (executable)
@@ -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;