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/trunk@2138
9efc2488-bf62-4759-914b-
345cdb29e865
# 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