aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-01-28 12:50:45 -0800
committerAdam Vandenberg2012-01-28 12:50:45 -0800
commit32a7da22a27ef992645a0d87533dd133170e23a4 (patch)
treea1c19d4fd3f4a8eb867b1a748fe71b71e396cbd6
parente3d39d4630ee02b82a89a281f855766e9283f701 (diff)
downloadhomebrew-32a7da22a27ef992645a0d87533dd133170e23a4.tar.bz2
audit: make boost-jam a build-time dependency
-rwxr-xr-xLibrary/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 0910d207f..945d0e765 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -24,7 +24,7 @@ def audit_formula_text name, text
end
# cmake, pkg-config, and scons are build-time deps
- if text =~ /depends_on ['"](cmake|pkg-config|scons|smake)['"]$/
+ if text =~ /depends_on ['"](boost-jam|cmake|pkg-config|scons|smake)['"]$/
problems << " * #{$1} dependency should be \"depends_on '#{$1}' => :build\""
end