aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-10-15 21:17:25 -0500
committerJack Nagel2014-10-15 21:17:25 -0500
commit1b64612b65a0b3896d5965cc2098393ce6de18a1 (patch)
tree7988c00605f1c8d979e3ee44d053a3a1f6d80a9e /Library
parent7266ecd4e3799006d0482708a3331bfac4e1e0d1 (diff)
downloadbrew-1b64612b65a0b3896d5965cc2098393ce6de18a1.tar.bz2
Exempt libtool and svn from the shadowed headers check
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_cellar_checks.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb
index 337cd50b7..918301ac1 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")