From 3396d479d2cc87fed0f9a74f711881ea1784e0d6 Mon Sep 17 00:00:00 2001 From: Mike McQuaid <mike@mikemcquaid.com> Date: Sun, 30 Oct 2016 16:14:51 -0400 Subject: [PATCH] build: write options to file. These can be useful for later inspection or upload by `gist-logs` if there's a failed install and it's unclear from logs alone what options were used. --- Library/Homebrew/build.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/build.rb b/Library/Homebrew/build.rb index d3c2833d40..c4e903642b 100644 --- a/Library/Homebrew/build.rb +++ b/Library/Homebrew/build.rb @@ -132,6 +132,8 @@ class Build else formula.prefix.mkpath + (formula.logs/"00.options.out").write \ + "#{formula.full_name} #{formula.build.used_options.sort.join(" ")}".strip formula.install stdlibs = detect_stdlibs(ENV.compiler) -- GitLab