From 4ea2f9dc91f636249c334aa326c6196b74df8354 Mon Sep 17 00:00:00 2001 From: Martin Afanasjew Date: Sun, 8 May 2016 21:41:51 +0200 Subject: [PATCH] Fix more bad dump_verbose_config references Follow-up to c7edf9a063dce63afb9ab54b6d71fe864d578365 and related to changes from #168. --- Library/Homebrew/exceptions.rb | 4 ++-- Library/Homebrew/formula.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 0dc48f2344..765172e159 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -330,14 +330,14 @@ class BuildError < RuntimeError end end else - require "cmd/config" + require "system_config" require "build_environment" ohai "Formula" puts "Tap: #{formula.tap}" if formula.tap? puts "Path: #{formula.path}" ohai "Configuration" - Homebrew.dump_verbose_config + SystemConfig.dump_verbose_config ohai "ENV" Homebrew.dump_build_env(env) puts diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index b8889225e0..3e6006b3b1 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1482,12 +1482,12 @@ class Formula end log.puts - require "cmd/config" + require "system_config" require "build_environment" env = ENV.to_hash - Homebrew.dump_verbose_config(log) + SystemConfig.dump_verbose_config(log) log.puts Homebrew.dump_build_env(env, log)