[Opensrf-commits] r2135 - branches/rel_1_6/src/extras (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Sun Dec 19 21:31:22 EST 2010
Author: dbs
Date: 2010-12-19 21:31:20 -0500 (Sun, 19 Dec 2010)
New Revision: 2135
Modified:
branches/rel_1_6/src/extras/Makefile.install
Log:
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.
Modified: branches/rel_1_6/src/extras/Makefile.install
===================================================================
--- branches/rel_1_6/src/extras/Makefile.install 2010-12-20 01:22:19 UTC (rev 2134)
+++ branches/rel_1_6/src/extras/Makefile.install 2010-12-20 02:31:20 UTC (rev 2135)
@@ -368,7 +368,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