From 49ac8d6cad88f4f5e014c7e8dec1cb464182d4c2 Mon Sep 17 00:00:00 2001 From: dbs Date: Mon, 20 Dec 2010 02:31:20 +0000 Subject: [PATCH] Straighen out -f / -d flag confusion in libmemcached prerequisite There are two different styles of checking for previously downloaded tarballs in this Makefile; the libmemcached entry combined them both with unfortunate results. git-svn-id: svn://svn.open-ils.org/OpenSRF/branches/rel_1_6@2135 9efc2488-bf62-4759-914b-345cdb29e865 --- src/extras/Makefile.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extras/Makefile.install b/src/extras/Makefile.install index f4d5f06..2a7c149 100644 --- a/src/extras/Makefile.install +++ b/src/extras/Makefile.install @@ -368,7 +368,7 @@ install_buildutils: # Install libmemcached from the official project source install_libmemcached: - if [ ! -d $(LIBMEMCACHED).tar.gz ]; then wget $(LIBMEMCACHED_HOST)/$(LIBMEMCACHED).tar.gz; fi; + if [ ! -f $(LIBMEMCACHED).tar.gz ]; then wget $(LIBMEMCACHED_HOST)/$(LIBMEMCACHED).tar.gz; fi; tar xzf $(LIBMEMCACHED).tar.gz cd $(LIBMEMCACHED) && ./configure && make && make install -- 2.11.0