aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bind.rb
diff options
context:
space:
mode:
authorMisty De Meo2013-07-09 19:30:15 -0700
committerMisty De Meo2013-07-10 01:51:09 -0700
commit7fc8cc09a3a3c633eb20f4419eb373c035bf1aff (patch)
tree317c61940397562a5a36f0c1e5e37c23f27dfe31 /Library/Formula/bind.rb
parent4716464b2704fcebc3677566b0af3174191b28e1 (diff)
downloadhomebrew-7fc8cc09a3a3c633eb20f4419eb373c035bf1aff.tar.bz2
Replace == :leopard with <= :leopard
Diffstat (limited to 'Library/Formula/bind.rb')
-rw-r--r--Library/Formula/bind.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/bind.rb b/Library/Formula/bind.rb
index d17c015c6..220581af8 100644
--- a/Library/Formula/bind.rb
+++ b/Library/Formula/bind.rb
@@ -6,7 +6,7 @@ class Bind < Formula
sha1 '9e1a9e5e45685befce6b93d4fcfd63e50eaeb2cf'
version '9.9.3-P1'
- depends_on "openssl" if MacOS.version == :leopard
+ depends_on "openssl" if MacOS.version <= :leopard
def install
ENV.libxml2
@@ -23,7 +23,7 @@ class Bind < Formula
# For Xcode-only systems we help a bit to find openssl.
# If CLT.installed?, it evaluates to "/usr", which works.
- args << "--with-openssl=#{MacOS.sdk_path}/usr" unless MacOS.version == :leopard
+ args << "--with-openssl=#{MacOS.sdk_path}/usr" unless MacOS.version <= :leopard
system "./configure", *args