aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-09-04 10:43:44 -0700
committerAdam Vandenberg2012-09-04 10:43:48 -0700
commitf589644aa4ad578aa622453b77159db53035da24 (patch)
tree397466520a6ca3050dc63eaabb66b0893edd1634 /Library
parentc60a9ef3144084a443db001ca8168a32ed99fb6b (diff)
downloadbrew-f589644aa4ad578aa622453b77159db53035da24.tar.bz2
Exempt automake from some audits
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 030555beb..6812dd118 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -275,9 +275,10 @@ class FormulaAuditor
end
# build tools should be flagged properly
+ # 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
+ end unless f.name == "automake"
# FileUtils is included in Formula
if text =~ /FileUtils\.(\w+)/