diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 282b9b9da0..fe2df3140b 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -104,8 +104,8 @@ module FormulaCellarChecks end def check_shadowed_headers - ["libtool", "subversion", "berkeley-db"].each do |formula_name| - return if formula.name == formula_name + ["libtool", "subversion", "berkeley-db", "openssl"].each do |formula_name| + return if formula.name.start_with?(formula_name) end return if MacOS.version < :mavericks && formula.name.start_with?("postgresql")