aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-01-02 14:58:15 -0800
committerAdam Vandenberg2012-01-02 14:58:15 -0800
commit198135e8c095a02f91533b5c385292cc4f6f85c2 (patch)
treedb574132bf8395dcbfe6e3e0d2fbadbcfc1809b5 /Library
parent28a00a2c090a96dcded281bfc1a5e3ff74a9fde5 (diff)
downloadbrew-198135e8c095a02f91533b5c385292cc4f6f85c2.tar.bz2
audit: do not complain about --32-bit
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index ca4b8ad59..b6423de37 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