From 1b64612b65a0b3896d5965cc2098393ce6de18a1 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 15 Oct 2014 21:17:25 -0500 Subject: [PATCH] Exempt libtool and svn from the shadowed headers check --- 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 337cd50b7e..918301ac16 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -104,6 +104,7 @@ module FormulaCellarChecks end def check_shadowed_headers + return if f.name == "libtool" || f.name == "subversion" return if f.keg_only? || !f.include.directory? files = relative_glob(f.include, "**/*.h")