in reply to
Get module's location savely?
If the library directory is not fixed then you have to tell perl somehow. One way is to set the environment variable PERL5LIB to the directory, another is to use your own environment variable, for example:
use lib $ENV{'MY_ENV_VAR'}; use MyModule;
[download]
Comment on
Re: Get module's location savely?
Download
Code
In Section
Seekers of Perl Wisdom