aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/libmemcached.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/Library/Formula/libmemcached.rb b/Library/Formula/libmemcached.rb
index 8976f4d58..34601ba44 100644
--- a/Library/Formula/libmemcached.rb
+++ b/Library/Formula/libmemcached.rb
@@ -20,24 +20,23 @@ class Libmemcached < Formula
depends_on "memcached"
end
+ def patches
+ # https://bugs.launchpad.net/libmemcached/+bug/1284765
+ DATA
+ end
+
def install
ENV.append_to_cflags "-undefined dynamic_lookup" if MacOS.version <= :leopard
args = ["--prefix=#{prefix}"]
if build.with? "sasl"
- args << "--with-memcached-sasl=#{Formula.factory("memcached").bin}/memcached"
+ args << "--with-memcached-sasl=#{Formula["memcached"].bin}/memcached"
end
system "./configure", *args
system "make install"
end
-
- def patches
- # https://bugs.launchpad.net/libmemcached/+bug/1284765
- DATA
- end
-
end
__END__