aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorJack Nagel2013-06-04 11:15:30 -0500
committerJack Nagel2013-06-04 11:15:31 -0500
commit96f3f5dd98bc6f3dca9891b9f33549b6f33bd436 (patch)
tree5b43a49d371a3c8bb07c19f0c0eeb6509285b9e0 /Library/Homebrew/cmd
parent0f3636961350c63aa89b203c695eda7fc5333e64 (diff)
downloadhomebrew-96f3f5dd98bc6f3dca9891b9f33549b6f33bd436.tar.bz2
Remove postgresql and mysql audit noise
Closes #20159.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/audit.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 99aad1392..d3ee4ed62 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -148,7 +148,7 @@ class FormulaAuditor
problem <<-EOS.undent unless dep.tags.any? || f.name =~ /automake/ && dep.name == 'autoconf'
#{dep} dependency should be "depends_on '#{dep}' => :build"
EOS
- when "git", "ruby", "emacs", "mysql", "mercurial"
+ when "git", "ruby", "emacs", "mercurial"
problem <<-EOS.undent
Don't use #{dep} as a dependency. We allow non-Homebrew
#{dep} installations.
@@ -160,14 +160,6 @@ class FormulaAuditor
that works with brewed and system Python and allows us to support
bindings for 2.x and 3.x in parallel and much more.
EOS
- when "postgresql"
- # Postgis specifically requires a Homebrewed postgresql
- unless f.name == "postgis"
- problem <<-EOS.undent
- Don't use #{dep} as a dependency. We allow non-Homebrew
- #{dep} installations.
- EOS
- end
when 'gfortran'
problem "Use ENV.fortran during install instead of depends_on 'gfortran'"
when 'open-mpi', 'mpich2'