rsmah has asked for the wisdom of the Perl Monks concerning the following question:
I've tried to call cpan in a variety of ways, including setting $CPAN::Config->{makepl_arg} = "..." or calling CPAN::Shell->o("conf", "makepl_arg", "...") but they don't seem to work! The next call to make/test/install doesn't seem to use the options I specified. Anyone know what's going on?
Just FYI, I'm trying this:
perl -MCPAN -e'CPAN::Shell->o("conf", "makepl_arg", "TT_ACCEPT=y TT_QUIET=y"); make Template'
I've also tried:
perl -MCPAN -e'CPAN::Shell->o("conf", "makepl_arg", "TT_ACCEPT=y TT_QUIET=y"); CPAN::Shell->make("Template")'
Oh, if there's a way to do this with the cpan wrapper program directly, I'd love to know!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Automating install of modules that need Makefile.PL args with CPAN
by eserte (Deacon) on Dec 12, 2007 at 20:25 UTC | |
|
Re: Automating install of modules that need Makefile.PL args with CPAN
by Anonymous Monk on Dec 12, 2007 at 20:01 UTC |