in reply to A simple library question
Er, when you install a Perl module in the way that is appropriate for your platform (CPAN, PPM, RPMs or whatever) the files will be placed in the correct location.
If you have installed (or even simply copied) the modules files into a non-standard location then you have to tell Perl where that is using the lib pragma:
You can read about this in the lib manpageuse lib qw(/my/module/directory ./lib);
/J\
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: A simple library question
by rjbs (Pilgrim) on Jul 14, 2004 at 11:58 UTC | |
by hsinclai (Deacon) on Jul 14, 2004 at 12:07 UTC |