Hello,
it works, but I have two different installations of Perl (the first one is the system built, the second one is a particular version of Perl in my personal directory).
How can I install with the target of my personal installation, not the system default?
In fact I have:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!
ERROR: Can't create '/usr/local/lib/perl/5.10.1'
Do not have write permissions on '/usr/local/lib/perl/5.10.1'
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!!
at -e line 1
make: *** [pure_site_install] Errore 13
It is the default system installation,
but I would like to install with target in:
/usr/local/perls/perl5.12
Please, any idea?
Thank you for anwser | [reply] [d/l] |
Use the appropriate perl to call Makefile.PL. If you execute Makefile.PL with the system Perl, it will install the module into the system Perl directory. If you execute Makefile.PL with your own Perl, it will install the module into your own Perl directory.
| [reply] [d/l] [select] |
Done with your suggestion!
In fact, now it works!
Thank you! :-)
| [reply] |