diff options
| author | Shaun Jackman | 2018-01-09 10:34:32 -0800 |
|---|---|---|
| committer | Shaun Jackman | 2018-01-09 10:35:59 -0800 |
| commit | 95bf23404ea39a8847b56612c3fef44497daf893 (patch) | |
| tree | 7b9321d08911a7211537db57827780892949c1f0 /Library | |
| parent | 311aa724ddb1d738476af6573153c28d6f606054 (diff) | |
| download | brew-95bf23404ea39a8847b56612c3fef44497daf893.tar.bz2 | |
check_install_sanity: Use formula.runtime_dependencies
Fix Error: wget contains conflicting version recursive dependencies:
openssl, openssl@1.1
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 1e2d77b2c..a0b67f04d 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -149,7 +149,7 @@ class FormulaInstaller recursive_deps = formula.recursive_dependencies recursive_formulae = recursive_deps.map(&:to_formula) - recursive_runtime_deps = formula.recursive_dependencies.reject(&:build?) + recursive_runtime_deps = formula.runtime_dependencies recursive_runtime_formulae = recursive_runtime_deps.map(&:to_formula) recursive_dependencies = [] |
