Jeff,
Got it to work, had a typo in the path!
Thanks,
Jerry
Jerry Preston wrote:
> Jeff,
>
> No luck! I get the following:
>
> Can't locate Date/Calc.pm in @INC (@INC contains:
> /export/home/kthmgr/lib/perl5/site_perl/5.6.0/sun4_solaris
> /usr/local/lib/perl5/5.6.0/sun4-solaris
> /usr/local
Jeff,
No luck! I get the following:
Can't locate Date/Calc.pm in @INC (@INC contains:
/export/home/kthmgr/lib/perl5/site_perl/5.6.0/sun4_solaris
/usr/local/lib/perl5/5.6.0/sun4-solaris
/usr/local/lib/perl5/5.6.0 /usr/local/lib/perl5/site_perl/5.6.0/sun4-solaris
/usr/local/lib/perl5/site_perl/5.
On Dec 12, Jerry Preston said:
> use lib qw(
>/export/home/kthmgr/lib/perl5/site_perl/5.6.0/sun4_solaris/Date::Calc
>qw( :all ) );
You're confusing the two.
use lib "path/to/module";
use Module ...;
so you want:
use lib '/export/home/kthmgr/lib/perl5/site_perl/5.6.0/sun4_solaris';
us