in reply to Re^2: Re-Test a CPAN module
in thread Re-Test a CPAN module

If you don't want to use CPAN, you can just download the packages from CPAN. Then unpack the packages, do your modifications and tests, and make install.

Replies are listed 'Best First'.
Re^4: Re-Test a CPAN module
by saintex (Scribe) on Mar 12, 2011 at 13:24 UTC
    ok,
    thank you!
Re^4: Re-Test a CPAN module
by saintex (Scribe) on Mar 14, 2011 at 09:06 UTC
    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

      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.

        Done with your suggestion!

        In fact, now it works!

        Thank you! :-)