This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b86471a
)
perlglob.exe needs to be found in Win32, patch from
author
Jarkko Hietaniemi
<jhi@iki.fi>
Mon, 26 Feb 2001 13:56:22 +0000
(13:56 +0000)
committer
Jarkko 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
patch
|
blob
|
blame
|
history
diff --git
a/ext/Encode/compile
b/ext/Encode/compile
index
f6957d2
..
a688c23
100755
(executable)
--- 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;