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
commit6797ae057aa3f9ea0a62c68b90e604c98ed85518 (patch)
treefb19a9bea18409dac9a4a6ccf1a6b65945a68fe4 /Library
parent9ebfcd8187b7405cc3aeebec6091470348bc8c93 (diff)
downloadhomebrew-6797ae057aa3f9ea0a62c68b90e604c98ed85518.tar.bz2
FormulaInstaller: actually select unsatisfied requirements
Fixes #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