in reply to Re^2: Can't locate Modules/test.pm in @INC
in thread Can't locate Modules/test.pm in @INC
should do what you want.setenv PERL5LIB ${SOURCE_ROOT}:$PERL5LIB
However, the effort you are making to put (parts of) the original include path into $PERL5LIB is unnecessary. What you specify in $PERL5LIB is searched in addition to the original path. So, just
should be enough.setenv PERL5LIB $SOURCE_ROOT
Anno
|
|---|