Fix problem with @INC in preload.perl.

This commit is contained in:
Colin Kuskie 2009-11-18 18:00:18 -08:00
parent 07a4a55f51
commit 9187b6b7b7

View file

@ -2,7 +2,9 @@ use strict;
my $webguiRoot = '/data/WebGUI';
@INC = "$webguiRoot/lib", grep { $_ ne q{.} } @INC;
@INC = grep { $_ ne q{.} } @INC;
unshift @INC, "$webguiRoot/lib";
# add custom lib directories to library search path
unshift @INC, grep {