Don't use stderr for make_fuss output.

* Using stderr breaks some configure script which fails due to contents
  available in stderr.
This commit is contained in:
Xiyue Deng 2013-10-20 06:44:05 -07:00
parent b31f6c0099
commit 862e6ca3bc

View File

@ -213,9 +213,9 @@ class Cmd
adds = args - @args adds = args - @args
dups = dels & args dups = dels & args
STDERR.puts "brew: superenv removed: #{dels*' '}" unless dels.empty? puts "brew: superenv removed: #{dels*' '}" unless dels.empty?
STDERR.puts "brew: superenv deduped: #{dups}" unless dups.empty? puts "brew: superenv deduped: #{dups}" unless dups.empty?
STDERR.puts "brew: superenv added: #{adds*' '}" unless adds.empty? puts "brew: superenv added: #{adds*' '}" unless adds.empty?
end end
def verbose? def verbose?
!ENV['VERBOSE'].nil? || !ENV['HOMEBREW_VERBOSE'].nil? !ENV['VERBOSE'].nil? || !ENV['HOMEBREW_VERBOSE'].nil?