up vote 5 down vote favorite
3
share [g+] share [fb]

I have set

makepl_arg         [INSTALLDIRS=site PREFIX=~/perl]
mbuildpl_arg       [--install_base ~/perl]

in the CPAN.pm configuration. I had hoped that this would cause modules to get installed in the same place, but I still have to set multiple paths in PERL5LIB:

export PERL5LIB=~/perl/share/perl/5.10.0:~/perl/lib/perl5/:~/perl/lib/perl/5.10.0

This has been the case for a long time and I have just lived with it, but I was wondering if anyone knew how to get CPAN.pm to put all modules in the same directory?

link|improve this question

55% accept rate
feedback

2 Answers

up vote 11 down vote accepted

Install local::lib. It will handle all the configuration for you.

link|improve this answer
Well, that made life significantly easier, thanks. – Chas. Owens Apr 24 '09 at 17:34
feedback

Have you tried using INSTALL_BASE for both? You have to set multiple directories because you're telling CPAN.pm to install in multiple directories. Tell it to install everything in the same place:

makepl_arg         [INSTALL_BASE=~/perl]
mbuildpl_arg       [--install_base ~/perl]
link|improve this answer
Make sure you have a relatively recent ExtUtils::MakeMaker. – Schwern Apr 25 '09 at 20:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.