diff options
author | Steve Hay <SteveHay@planit.com> | 2004-12-06 15:54:30 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2004-12-06 15:54:30 +0000 |
commit | f2e3b69f3d7756d88806b5fbcba98ad72be867ee (patch) | |
tree | 446c03284b33714a07a6afac8a58f73e996bc9e5 /t/win32 | |
parent | 3aa90d208c3bbfc1003a792d87215a5175eaea70 (diff) | |
download | perl-f2e3b69f3d7756d88806b5fbcba98ad72be867ee.tar.gz |
Fix another Win32 breakage caused by change 23554
p4raw-id: //depot/perl@23618
Diffstat (limited to 't/win32')
-rw-r--r-- | t/win32/system.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/win32/system.t b/t/win32/system.t index b1906ce73a..fb7a1d1429 100644 --- 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/) { |