
KevinR
Veteran

Apr 24, 2009, 9:48 AM
Post #3 of 5
(4502 views)
|
Re: [Shree] Can't locate IO/Scalar.pm in @INC (@INC contains: /opt/rocks/lib/perl5/5.8.8/
[In reply to]
|
Can't Post
|
|
try use lib "opt/rocks/lib/perl5/5.8.8/IO/Scalar.pm"; lib adds directories, not files to @INC, so the correct usage would be:
use lib "opt/rocks/lib/perl5/5.8.8"; -------------------------------------------------
(This post was edited by KevinR on Apr 24, 2009, 1:34 PM)
|