aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-12-27 15:57:11 +0000
committerMike McQuaid2014-12-27 16:31:43 +0000
commit15ac5fb3ebc279ec1f7e4bb6090661c6de909340 (patch)
treee8419d0f78632668631e50d7c1ea52091c2c27f6 /Library
parent8fe14451842dea92bca04116ba043421b4f44a6b (diff)
downloadhomebrew-15ac5fb3ebc279ec1f7e4bb6090661c6de909340.tar.bz2
audit (strict): whitelist 32-bit in options check.
Diffstat (limited to 'Library')
-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 88bddaf63..69efcaf83 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -173,7 +173,7 @@ class FormulaAuditor
def audit_options
formula.options.each do |o|
next unless @strict
- if o.name !~ /with(out)?-/ && o.name != "c++11" && o.name != "universal"
+ if o.name !~ /with(out)?-/ && o.name != "c++11" && o.name != "universal" && o.name != "32-bit"
problem "Options should begin with with/without. Migrate '--#{o.name}' with `deprecated_option`."
end
end