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:
3aa90d2
)
Fix another Win32 breakage caused by change 23554
author
Steve Hay
<SteveHay@planit.com>
Mon, 6 Dec 2004 15:54:30 +0000
(15:54 +0000)
committer
Steve Hay
<SteveHay@planit.com>
Mon, 6 Dec 2004 15:54:30 +0000
(15:54 +0000)
p4raw-id: //depot/perl@23618
t/win32/system.t
patch
|
blob
|
blame
|
history
diff --git
a/t/win32/system.t
b/t/win32/system.t
index
b1906ce
..
fb7a1d1
100644
(file)
--- a/
t/win32/system.t
+++ b/
t/win32/system.t
@@
-2,7
+2,9
@@
BEGIN {
chdir 't' if -d 't';
- @INC = '../lib';
+ # We need '../../lib' as well as '../lib' because parts of Config are
+ # delay-loaded, after we've chdir()'ed into $testdir.
+ @INC = ('../lib', '../../lib');
# XXX this could be further munged to enable some parts on other
# platforms
unless ($^O =~ /^MSWin/) {