in reply to Re: add remote dir to @INC
in thread add remote dir to @INC

well that is what I did... I didnt even modify the PERL5LIB environment variable - I just created a symlink to my remote module folder in /System/Library/Perl/Extras/5.10.0. which already is in my INC, this didnt fix the issue however

Replies are listed 'Best First'.
Re^3: add remote dir to @INC
by kosta (Sexton) on May 25, 2011 at 17:50 UTC
    ok I got somewhere... maybe you can give me a hand here... when searching for modules "how deep" does perl descend? What happened to me that when I added to INC the whole remote modules folder but when I added site_perl folder (which was descended kinda deep in modules) it started working... Any way to make sure it does a complete recursive search?
      It does not recursively descend through the @INC directories. Read require (which is called by use). There is a slight exception when you use lib (see the 'auto' directory).