From 8f85eb64c4875fed514150dec755cb267a96df74 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 20 Dec 2016 14:26:53 +0000 Subject: [PATCH] audit: fix 32-bit check. --- Library/Homebrew/dev-cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index eef6345d19..e83fb2bd07 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -448,7 +448,7 @@ class FormulaAuditor def audit_options formula.options.each do |o| - if o.name != "32-bit" + if o.name == "32-bit" problem "macOS has been 64-bit only since 10.6 so 32-bit options are deprecated." end