in reply to Usuage of CPAN's Text::Delimited
You need to add the directory that contains Text/Delimited.pm to @INC. That's not /user/comp/name. I suspect it's /user/comp/name/lib, so
use lib "/user/comp/name/lib";
By the way, I prefer the saner
perl Makefile.PL PREFIX=/some/dir LIB=/some/dir/lib/perl5
Nowadays, the above can be shortened to:
perl Makefile.PL INSTALL_BASE=/some/dir
Specifically, I use
perl Makefile.PL INSTALL_BASE=~
Update: Added suggestion for Makefile.PL args.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Usuage of CPAN's Text::Delimited
by Ratna_Ranjan (Novice) on Nov 16, 2009 at 23:52 UTC | |
by keszler (Priest) on Nov 17, 2009 at 00:35 UTC | |
by ikegami (Patriarch) on Nov 17, 2009 at 05:27 UTC |