Update: My problem seems to have solved itself. Not sure what's going on. Sorry for the false alarm.
My understanding is that perl/lib
is reserved for the core Perl distribution and that I should be putting my own modules in perl/site/lib
. However, when I do that, perldoc
does not find my modules. It does find modules that I put in perl/lib
. It also finds modules that ActivePerl's ppm
utility installs in perl/site/lib
. What do I need to do differently so that my modules in perl/site/lib
will be visible to perldoc
? Currently, my "deployment process" consists of nothing more than copying a bunch of .pm
files to perl/site/lib
-- I suspect that's the problem.