From 0f76ade06b5ab17b1ecb781b76dcd22dcfcde20e Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Wed, 18 Oct 2023 10:29:41 -0400 Subject: [PATCH] formula_installer: pre-install implicit dependencies --- Library/Homebrew/formula_installer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index d4a797e924..891e3209d5 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -362,7 +362,7 @@ class FormulaInstaller return if @compute_dependencies.blank? compute_dependencies(use_cache: false) if @compute_dependencies.any? do |dep, options| - next false if dep.tags != [:build, :test] + next false unless dep.implicit? fetch_dependencies install_dependency(dep, options)