jeanluca has asked for the wisdom of the Perl Monks concerning the following question:
I tried to solve this as follows$> sh Configure -de -Dprefix=/Users/jeanluca/software/perl ..... $> make ..... $> make install ..... ./perl installperl --destdir= /usr/local/bin is not writable by you make[1]: *** [install.perl] Error 2 make: *** [install] Error 2
but I get the feeling this is not the right solution:$> ./perl installperl --destdir=/Users/jeanluca/software/perl
How do I tell the installation procedure where to put the executables, because I want to have everything local!$> export PERL5LIB=/Users/jeanluca/software/perl/usr/local/lib/perl5/5 +.10.0/ $> /Users/jeanluca/software/perl/usr/local/bin/cpan -bash: /Users/jeanluca/software/perl/usr/local/bin/cpan: /usr/local/bi +n/perl: bad interpreter: No such file or directory
And finally, as stated by jnbek, the default values overwrite the command-line arguments!$> sh Configure -de
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: local Perl install (OSX non-root)
by jnbek (Scribe) on Jul 13, 2009 at 15:59 UTC | |
|
Re: local Perl install (OSX non-root)
by Anonymous Monk on Jul 13, 2009 at 12:57 UTC |