if you want to permanently set @INC, you'll need to reinstall perl most
likely
however, you *can* tell scripts where to find modules by using this syntax
at the top of your script:
use lib qw( /foo/bar/bleh/ /yada/quux/ );
this will tell perl to also look for modules in the above 2 directories
hth
Jos Boumans
> I have a couple of PERL installations on my system. How do I point perl
at
> the correct set of modules? I tried setting @INC inline in my program,
but
> that did not work.
>
> Thanks,
>
> Mike
>
>