Skip to content

Commit

Permalink
SystemConfig: fix version reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
mistydemeo committed Nov 10, 2016
1 parent 4e3d23a commit d8c19fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Library/Homebrew/system_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ def dump_verbose_config(f = $stdout)
f.puts "HOMEBREW_BOTTLE_DOMAIN: #{BottleSpecification::DEFAULT_DOMAIN}"
f.puts hardware if hardware
f.puts "Homebrew Ruby: #{describe_homebrew_ruby}"
f.puts "GCC-4.0: build #{gcc_40}" if gcc_40
f.puts "GCC-4.2: build #{gcc_42}" if gcc_42
f.puts "Clang: #{clang ? "#{clang} build #{clang_build}" : "N/A"}"
f.puts "GCC-4.0: build #{gcc_40}" unless gcc_40.null?
f.puts "GCC-4.2: build #{gcc_42}" unless gcc_42.null?
f.puts "Clang: #{clang.null? ? "N/A" : "#{clang} build #{clang_build}"}"
f.puts "Git: #{describe_git}"
f.puts "Perl: #{describe_perl}"
f.puts "Python: #{describe_python}"
Expand Down

0 comments on commit d8c19fd

Please sign in to comment.