aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-01-29 23:43:15 -0600
committerJack Nagel2013-01-29 23:43:44 -0600
commit1a05e18fe91e4e11d9cfc08a36a23e70fe83930e (patch)
tree938355577486ccf19e6432b9c2c9ce671e9622e1 /Library
parent0dec35e7b0f0a7fe2552e4c53439b4f5a54f41de (diff)
downloadbrew-1a05e18fe91e4e11d9cfc08a36a23e70fe83930e.tar.bz2
FormulaInstaller: actually select unsatisfied requirements
Fixes Homebrew/homebrew#17422.
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 623d2b930..84a4a2cf5 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -114,6 +114,8 @@ class FormulaInstaller
f.recursive_dependencies.map(&:to_formula).any? do |dep|
dep.build.with?(req.name)
end || f.build.with?(req.name)
+ else
+ true
end
end
end