in reply to Perl5lib causes conflict?
in your script before loading any modules, or write a wrapper that unsets PERL5LIB before starting your perlscript and use that instead of executing the perl script directly.BEGIN { delete $ENV{PERL5LIB} } use lib "<my application folder>/lib";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl5lib causes conflict?
by jujiro_eb (Sexton) on Nov 09, 2009 at 14:33 UTC | |
by moritz (Cardinal) on Nov 09, 2009 at 14:46 UTC |