diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_cellar_checks.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 89f3a45f5..2b38b4b22 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -108,7 +108,12 @@ module FormulaCellarChecks return if formula.name == formula_name end - return if MacOS.version < :mavericks && formula.name.start_with?("postgresql") + if MacOS.version < :mavericks && + (formula.name.start_with?("postgresql") || + formula.name.start_with?("memcached")) + return + end + return if formula.keg_only? || !formula.include.directory? files = relative_glob(formula.include, "**/*.h") |
