From 198135e8c095a02f91533b5c385292cc4f6f85c2 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Mon, 2 Jan 2012 14:58:15 -0800 Subject: [PATCH] audit: do not complain about --32-bit --- Library/Homebrew/cmd/audit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index ca4b8ad59b..b6423de374 100755 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -170,6 +170,7 @@ def audit_formula_options f, text if documented_options.length > 0 documented_options.each do |o| next if o == '--universal' and text =~ /ARGV\.build_universal\?/ + next if o == '--32-bit' and text =~ /ARGV\.build_32_bit\?/ problems << " * Option #{o} is unused" unless options.include? o end end