in reply to How to install local lib
The problem is that you haven't told Perl to use your local lib. Add the following to your login script ~/.bash_profile if you use the parameters I suggest below:
export PERL5LIB=/sox/perl_lib/lib/perl5
PREFIX has a poor default for LIB=. The following is recommended instead:
perl Makefile.PL PREFIX=/sox/perl_lib LIB=/sox/perl_lib/lib/perl5
If you have ExtUtils::MakeMaker 6.31 or newer, you can write that as
perl Makefile.PL INSTALL_BASE=/sox/perl_lib
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to install local lib
by mr_p (Scribe) on Apr 16, 2010 at 14:48 UTC | |
|
Re^2: How to install local lib
by mr_p (Scribe) on Apr 16, 2010 at 15:06 UTC | |
by marto (Cardinal) on Apr 16, 2010 at 15:19 UTC | |
by ikegami (Patriarch) on Apr 16, 2010 at 15:22 UTC | |
by marto (Cardinal) on Apr 16, 2010 at 15:23 UTC | |
by ikegami (Patriarch) on Apr 16, 2010 at 15:20 UTC | |
by mr_p (Scribe) on Apr 16, 2010 at 15:38 UTC | |
by ikegami (Patriarch) on Apr 16, 2010 at 16:23 UTC |