in reply to Taint and Module q
If the package is actually called 'LIB::MYMODULE' then I'd do it as above. If the package name is just 'MYMODULE' (and you keep all your modules in the LIB directory) then I'd:use lib qw(/usr/home/justin/www); use LIB::MYMODULE;
use lib qw(/usr/home/justin/www/LIB); use MYMODULE;
|
|---|