aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-21 18:57:27 -0800
committerAdam Vandenberg2012-02-21 18:57:27 -0800
commit0f28c93f0e586994fdd15620e29c57c35c44dd2a (patch)
tree529a0c1b5122b1eb99e3fd67c89833d6a422b5dd /Library
parentcdb406fe2f25833202b74e3dad8467b67c7e8fe8 (diff)
downloadhomebrew-0f28c93f0e586994fdd15620e29c57c35c44dd2a.tar.bz2
audit: flag imake as a build dep
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 6f7a9fa1d..ac67ea0b9 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -23,8 +23,8 @@ def audit_formula_text name, text
problems << " * Check indentation of 'depends_on'."
end
- # cmake, pkg-config, and scons are build-time deps
- if text =~ /depends_on ['"](boost-build|cmake|pkg-config|scons|smake)['"]$/
+ # build tools should be flagged properly
+ if text =~ /depends_on ['"](boost-build|cmake|imake|pkg-config|scons|smake)['"]$/
problems << " * #{$1} dependency should be \"depends_on '#{$1}' => :build\""
end