up vote 1 down vote favorite
1
share [g+] share [fb]

I currently have this on a script:

 CPAN::Shell->rematein("notest", "install", "$m");

Where $m is a module name the script installs. However, I want the module to install without prompting the user whether additional dependencies should be installed (optional deps or not), how can I do that?

link|improve this question
feedback

2 Answers

What is your setting for prerequisites_policy in CPAN::Config? That should be follow and not ask.

link|improve this answer
feedback

Found an answer here.

Set PERL_MM_USE_DEFAULT=1 in your environment.

link|improve this answer
Although this is not an idiot-proof solution: perlmonks.org/?node_id=548581 – mob Nov 7 '09 at 0:18
feedback

Your Answer

 
or
required, but never shown

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