aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-20 22:31:14 -0700
committerAdam Vandenberg2012-03-20 22:31:14 -0700
commit6eced20b351a4dab4a1cbf75fe7a9d1975602512 (patch)
tree4843df4f39df11816e97e1f956f9adfb64c40007 /Library
parent07736cb8fa372e8479e2cc24a67d1f73ee6030cd (diff)
downloadbrew-6eced20b351a4dab4a1cbf75fe7a9d1975602512.tar.bz2
Fix Dependency equality
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dependencies.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dependencies.rb b/Library/Homebrew/dependencies.rb
index 06fa4b5d0..455b42e24 100644
--- a/Library/Homebrew/dependencies.rb
+++ b/Library/Homebrew/dependencies.rb
@@ -71,7 +71,7 @@ class Dependency
end
def ==(other_dep)
- @name = other_dep.to_s
+ @name == other_dep.to_s
end
def options