On Sat, 13 May 2000, Robert Nice wrote:
 
> use lib '../site_perl';

it's been explained, 'use lib' happens at compile time (once per-script)
and @INC is reset to whatever it was startup time after each request.  the
simple solution for you, which i didn't see mentioned, is to modify @INC
at runtime, e.g.

unshift @INC, '../site_perl';

Reply via email to