aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorMike McQuaid2017-04-18 09:18:55 +0100
committerGitHub2017-04-18 09:18:55 +0100
commit55c02ae7747bf05eadec95c91497d06ec3dd2ded (patch)
tree05ca665c3fce69e0e69058f9cb919dc3d42d6192 /Library/Homebrew/extend
parent20ad7f9cf6e69196b224f95e9fce4b8af8a6d284 (diff)
parent3f8722c971cedf8b2c66d918fc4dd608bf439009 (diff)
downloadbrew-55c02ae7747bf05eadec95c91497d06ec3dd2ded.tar.bz2
Merge pull request #2478 from MikeMcQuaid/audit-skip-methods
audit: allow skipping audit methods.
Diffstat (limited to 'Library/Homebrew/extend')
-rw-r--r--Library/Homebrew/extend/os/mac/formula_cellar_checks.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb b/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb
index 5b1c648bf..10379c981 100644
--- a/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb
+++ b/Library/Homebrew/extend/os/mac/formula_cellar_checks.rb
@@ -67,7 +67,7 @@ module FormulaCellarChecks
checker = LinkageChecker.new(keg, formula)
return unless checker.broken_dylibs?
- audit_check_output <<-EOS.undent
+ problem_if_output <<-EOS.undent
The installation was broken.
Broken dylib links found:
#{checker.broken_dylibs.to_a * "\n "}
@@ -76,9 +76,9 @@ module FormulaCellarChecks
def audit_installed
generic_audit_installed
- audit_check_output(check_shadowed_headers)
- audit_check_output(check_openssl_links)
- audit_check_output(check_python_framework_links(formula.lib))
+ problem_if_output(check_shadowed_headers)
+ problem_if_output(check_openssl_links)
+ problem_if_output(check_python_framework_links(formula.lib))
check_linkage
end
end