[Opensrf-commits] r2138 - trunk/src/extras (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Dec 19 21:55:26 EST 2010
Author: dbs
Date: 2010-12-19 21:55:24 -0500 (Sun, 19 Dec 2010)
New Revision: 2138
Modified:
trunk/src/extras/Makefile.install
Log:
Straighten 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.
Modified: trunk/src/extras/Makefile.install
===================================================================
--- trunk/src/extras/Makefile.install 2010-12-20 02:54:50 UTC (rev 2137)
+++ trunk/src/extras/Makefile.install 2010-12-20 02:55:24 UTC (rev 2138)
@@ -362,7 +362,7 @@
# 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
More information about the opensrf-commits
mailing list