Change 23618 by [EMAIL PROTECTED] on 2004/12/06 15:54:30
Fix another Win32 breakage caused by change 23554
Affected files ...
... //depot/perl/t/win32/system.t#6 edit
Differences ...
==== //depot/perl/t/win32/system.t#6 (text) ====
Index: perl/t/win32/system.t
--- perl/t/win32/system.t#5~16251~ Sun Apr 28 11:23:52 2002
+++ perl/t/win32/system.t Mon Dec 6 07:54:30 2004
@@ -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/) {
End of Patch.