Skip Menu |

This queue is for tickets about the CPANPLUS CPAN distribution.

Report information
The Basics
Id: 76886
Status: new
Priority: 0/
Queue: CPANPLUS

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in:
  • 0.9123
  • 0.9124
  • 0.9125
  • 0.9126
  • 0.9127
  • 0.9128
Fixed in: (no value)



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');