aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXiyue Deng2013-10-20 06:44:05 -0700
committerXiyue Deng2013-10-20 06:44:05 -0700
commite1bd9b9e980c433878e60833f09964b8ca996657 (patch)
tree3593e868833532195705d5fb816ab61164d4f3db /Library
parent2c147a0d8ba32315950570f013df956bd99e3904 (diff)
downloadhomebrew-e1bd9b9e980c433878e60833f09964b8ca996657.tar.bz2
Don't use stderr for make_fuss output.
* Using stderr breaks some configure script which fails due to contents available in stderr.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/ENV/4.3/cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc
index e385ec3d5..d4df6d90f 100755
--- a/Library/ENV/4.3/cc
+++ b/Library/ENV/4.3/cc
@@ -213,9 +213,9 @@ class Cmd
adds = args - @args
dups = dels & args
- STDERR.puts "brew: superenv removed: #{dels*' '}" unless dels.empty?
- STDERR.puts "brew: superenv deduped: #{dups}" unless dups.empty?
- STDERR.puts "brew: superenv added: #{adds*' '}" unless adds.empty?
+ puts "brew: superenv removed: #{dels*' '}" unless dels.empty?
+ puts "brew: superenv deduped: #{dups}" unless dups.empty?
+ puts "brew: superenv added: #{adds*' '}" unless adds.empty?
end
def verbose?
!ENV['VERBOSE'].nil? || !ENV['HOMEBREW_VERBOSE'].nil?