aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-12-20 14:26:53 +0000
committerMike McQuaid2016-12-20 14:26:53 +0000
commit8f85eb64c4875fed514150dec755cb267a96df74 (patch)
treea288f77a95c84f4bcfeafa08bd8b89acf0e87e6e /Library
parentef6b55125c3af20ac39d1d98848cf2aa0f6c4dd5 (diff)
downloadbrew-8f85eb64c4875fed514150dec755cb267a96df74.tar.bz2
audit: fix 32-bit check.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb
index eef6345d1..e83fb2bd0 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