aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-07-31 10:36:08 +0100
committerMike McQuaid2017-07-31 10:36:10 +0100
commitaf463a0535544886d7561c2983dceb14a52a2035 (patch)
tree12bc132db73eb1c65510ded550e8aa344f845c6a /Library
parent2aa56748c4b04390c46e1ad5530020b3877ce91f (diff)
downloadbrew-af463a0535544886d7561c2983dceb14a52a2035.tar.bz2
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`.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index a67385338..4e4a59972 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?