Re: lib lost

2001-12-12 Thread Jerry Preston
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

Re: lib lost

2001-12-12 Thread Jerry Preston
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.

Re: lib lost

2001-12-12 Thread Jeff 'japhy' Pinyan
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