aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-12-09 20:47:30 +0000
committerGitHub2017-12-09 20:47:30 +0000
commite5e91f0216fb3f3f044b1148ed20a6785b5ec5e7 (patch)
treea6cb4a90df4f369503aa76f380a5b488d575ad0b /Library
parente57da601d732292bd67d3c7e7a63fa9a43a5e120 (diff)
parent3c6b1daf2b52b13797e52fcb42aa4220838a223e (diff)
downloadbrew-e5e91f0216fb3f3f044b1148ed20a6785b5ec5e7.tar.bz2
Merge pull request #3550 from MikeMcQuaid/fix-undefined-xquartz
Revert "formula_installer: tweak dependent requirements."
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 6d3984275..12a8a80bc 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -404,8 +404,8 @@ class FormulaInstaller
fatals = []
req_map.each_pair do |dependent, reqs|
- next if dependent.installed?
reqs.each do |req|
+ next if dependent.installed? && req.name == "maximummacos"
@requirement_messages << "#{dependent}: #{req.message}"
fatals << req if req.fatal?
end