From f2e3b69f3d7756d88806b5fbcba98ad72be867ee Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Mon, 6 Dec 2004 15:54:30 +0000 Subject: [PATCH] Fix another Win32 breakage caused by change 23554 p4raw-id: //depot/perl@23618 --- t/win32/system.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/win32/system.t b/t/win32/system.t index b1906ce..fb7a1d1 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/) { -- 1.8.3.1