From d263c73cc4d48f203d97ae885a21d5547744042c Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 27 Dec 2014 15:57:11 +0000 Subject: [PATCH] audit (strict): whitelist 32-bit in options check. --- Library/Homebrew/cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 88bddaf63f..69efcaf832 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