audit: fix 32-bit check.

This commit is contained in:
Mike McQuaid 2016-12-20 14:26:53 +00:00
parent ef6b55125c
commit 8f85eb64c4

View File

@ -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