aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorJack Nagel2013-02-21 16:47:35 -0600
committerJack Nagel2013-02-21 16:47:35 -0600
commit20328d763e47448b44c06cc7e2841a8f481bee3a (patch)
tree7d0c7ec419361b6d2f05047307c52f878d32f0c7 /Library/Homebrew/cmd
parent0a3c1bb5751fb774b9b595a88830c56ff9531bbc (diff)
downloadbrew-20328d763e47448b44c06cc7e2841a8f481bee3a.tar.bz2
audit: don't complain about versioned automake depending on autoconf
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 4c5508e76..3b1733e0b 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -289,7 +289,7 @@ class FormulaAuditor
# but don't complain about automake; it needs autoconf at runtime
if text =~ /depends_on ['"](#{BUILD_TIME_DEPS*'|'})['"]$/
problem "#{$1} dependency should be \"depends_on '#{$1}' => :build\""
- end unless f.name == "automake"
+ end unless f.name =~ /automake/
# FileUtils is included in Formula
if text =~ /FileUtils\.(\w+)/