From af463a0535544886d7561c2983dceb14a52a2035 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 31 Jul 2017 10:36:08 +0100 Subject: [PATCH] formula_installer: never build dependency bottles. This also helpfully avoids always building all dependencies from source when passing `--build-bottle` or forcing all bottles when passing `--force-bottle`. --- Library/Homebrew/formula_installer.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index a673853384..4e4a599725 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -543,6 +543,8 @@ class FormulaInstaller fi.options |= inherited_options fi.options &= df.options fi.build_from_source = ARGV.build_formula_from_source?(df) + fi.build_bottle = false + fi.force_bottle = false fi.verbose = verbose? fi.quieter = quieter? fi.debug = debug?