diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_cellar_checks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 282b9b9da..fe2df3140 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") |
