aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-10-15 21:17:25 -0500
committerJack Nagel2014-10-15 21:17:25 -0500
commit2b4f3842201f4d45f11bf64b5d355a8efc954d30 (patch)
treed72387a5fc2ff8ff452772c25d6eda7b53b96d89
parent91ef4aea6a12bb2e581477bbfe964e3f52d29e1d (diff)
downloadhomebrew-2b4f3842201f4d45f11bf64b5d355a8efc954d30.tar.bz2
Exempt libtool and svn from the shadowed headers check
-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")