From 5e62d7503e57ed166e69869c842eaa253f90654a Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 6 Feb 2015 08:30:42 +0000 Subject: [PATCH] formula_cellar_checks: tweak postgresql on 10.8. It shadows system headers sometimes (probably just Server.app?) but we don't really care. --- Library/Homebrew/formula_cellar_checks.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 49af0921e3..23099dd942 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -105,6 +105,7 @@ module FormulaCellarChecks def check_shadowed_headers return if formula.name == "libtool" || formula.name == "subversion" + return if MacOS.version < :mavericks && formula.name.start_with?("postgresql") return if formula.keg_only? || !formula.include.directory? files = relative_glob(formula.include, "**/*.h")