aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-12-05 22:17:56 -0600
committerJack Nagel2013-12-05 22:17:56 -0600
commit389514831940645ed1470f73c0167bd2423158af (patch)
treedd66c9777c824cea28d3821dbd93a9d68aec19fb
parentdb8431f39792cd8dd413674b916c807ed8ac3b34 (diff)
downloadhomebrew-389514831940645ed1470f73c0167bd2423158af.tar.bz2
Fix typo
-rw-r--r--Library/Homebrew/build_options.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/build_options.rb b/Library/Homebrew/build_options.rb
index 3c8c81eb2..f35295758 100644
--- a/Library/Homebrew/build_options.rb
+++ b/Library/Homebrew/build_options.rb
@@ -132,7 +132,7 @@ class BuildOptions
end
def opposite_of option
- option = Option.new(option) unless Option == option
+ option = Option.new(option) unless Option === option
if option.name =~ /^with-(.+)$/
Option.new("without-#{$1}")