Fix problem with @INC in preload.perl.
This commit is contained in:
parent
07a4a55f51
commit
9187b6b7b7
1 changed files with 3 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue