aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-03-28 14:58:33 +0000
committerMike McQuaid2014-04-03 19:47:15 +0100
commit363f2c116cf6256148624c841e62b59c508565f4 (patch)
tree3b86243897970e9037089dd258a56757ffdbf9e5 /Library
parent767da444f9d0112607370177d00c0d73042f2959 (diff)
downloadbrew-363f2c116cf6256148624c841e62b59c508565f4.tar.bz2
formula_installer: check pour from requirements.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index cf6e28903..a84827a55 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -55,6 +55,14 @@ class FormulaInstaller
return true if f.local_bottle_path
return false unless f.bottle && f.pour_bottle?
+ f.requirements.each do |req|
+ next if req.optional? || req.pour_bottle?
+ if install_bottle_options[:warn]
+ ohai "Building source; bottle blocked by #{req} requirement"
+ end
+ return false
+ end
+
unless f.bottle.compatible_cellar?
if install_bottle_options[:warn]
opoo "Building source; cellar of #{f}'s bottle is #{f.bottle.cellar}"