in reply to Re: How to handle Cross-platform Perl, modules, and versioning
in thread How to handle Cross-platform Perl, modules, and versioning
This code:
is embedded in the functions of logfile.pm, which is a custom library that I have no control over. I am trying to reference all the custom libraries in my code:use IO::handle; use FileHandle;
BEGIN { @PERL_SHARE = ( "/foo/custom/perl/lib/Custom_mods", ); unshift(@INC, @PERL_SHARE); };
|
|---|