summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2011-09-06 07:09:39 +1000
committerMichael Cahill <michael.cahill@wiredtiger.com>2011-09-06 07:09:39 +1000
commitb12f6c545838fc2791dd67cf6d78d012f8e5ec47 (patch)
treedd35ca881789356f28c4075b11d5e8a023047042 /lang
parentefc3756bcf7651e8395aaa291bfc3c6d65693b5b (diff)
downloadmongo-b12f6c545838fc2791dd67cf6d78d012f8e5ec47.tar.gz
Fix up various build issues:
* make test programs link statically by default * depende on libwiredtiger.la so tests are relinked when the library changes * don't bother with helper targets for test/insert
Diffstat (limited to 'lang')
-rw-r--r--lang/python/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am
index 1fd2c58b34d..9e1426b0be0 100644
--- a/lang/python/Makefile.am
+++ b/lang/python/Makefile.am
@@ -8,5 +8,5 @@ all-local: _wiredtiger.so
$(PYSRC)/wiredtiger_wrap.c: $(top_builddir)/wiredtiger.h $(PYSRC)/wiredtiger.i
@(cd $(PYSRC) && $(SWIG) -python -I$(abs_top_builddir) wiredtiger.i)
-_wiredtiger.so: $(wt_LTLIBRARIES) $(PYSRC)/wiredtiger_wrap.c
+_wiredtiger.so: $(top_builddir)/libwiredtiger.la $(PYSRC)/wiredtiger_wrap.c
$(PYTHON) $(PYSRC)/setup.py build_ext -b . -t . -f $(PY_SETUP_DEBUG)