aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-12-05 22:17:56 -0600
committerJack Nagel2013-12-05 22:17:56 -0600
commit55e99087991c1ed2aa5efa8d38c8b258a479589f (patch)
treeed86a774f731474e84ea83f5b6ff69a2c9e2c797 /Library
parentb2b0f711b1e0ddbb6714291943a77f564a07cf59 (diff)
downloadbrew-55e99087991c1ed2aa5efa8d38c8b258a479589f.tar.bz2
Fix typo
Diffstat (limited to 'Library')
-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}")