Remove intermediate method

This commit is contained in:
Jack Nagel 2014-07-19 22:55:49 -05:00
parent a150403eb9
commit 74ad97ce7f
2 changed files with 1 additions and 5 deletions

View File

@ -117,10 +117,6 @@ module Homebrew
f.puts "X11: #{describe_x11}"
end
def write_build_config(f)
Homebrew.dump_build_config(f)
end
def dump_verbose_config(f)
f.puts "HOMEBREW_VERSION: #{HOMEBREW_VERSION}"
f.puts "ORIGIN: #{origin}"

View File

@ -556,7 +556,7 @@ class Formula
Kernel.system "/usr/bin/tail", "-n", "5", logfn unless ARGV.verbose?
f.puts
require 'cmd/config'
Homebrew.write_build_config(f)
Homebrew.dump_build_config(f)
raise BuildError.new(self, cmd, args)
end
end