Subject: | --allow_build_interactivity=0 doesn't turn off interactivity (because of verbose) |
--allow_build_interactivity=0 doesn't turn off interactivity (because of
verbose)
well, verbosity and interactivity don't go hand in hand :)
The solution edit lib/CPANPLUS/Dist/MM.pm
### this makes MakeMaker use defaults if possible, according
### to schwern. See ticket 8047 for details.
local $ENV{PERL_MM_USE_DEFAULT} = 1 unless $run_verbose;
local $ENV{PERL_MM_USE_DEFAULT} = 1 if not
$conf->get_conf('allow_build_interactivity');