From c031329af1f4300237ba200a4d6ff5eb041d8e3d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 22 Sep 2010 17:15:38 -0700 Subject: ldb: Depend directly on replace, fixes the build on systems with tdb and tevent installed in the system. --- source4/lib/ldb/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/lib') diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 0067ee8db0..9819dd9912 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -25,11 +25,13 @@ def set_options(opt): opt.BUNDLED_EXTENSION_DEFAULT('ldb', noextension='ldb') opt.RECURSE('lib/tdb') opt.RECURSE('lib/tevent') + opt.RECURSE('lib/replace') def configure(conf): conf.RECURSE('lib/tdb') conf.RECURSE('lib/tevent') conf.RECURSE('lib/popt') + conf.RECURSE('lib/replace') # where does the default LIBDIR end up? in conf.env somewhere? # @@ -60,6 +62,7 @@ def build(bld): bld.RECURSE('lib/tdb') bld.RECURSE('lib/tevent') bld.RECURSE('lib/popt') + bld.RECURSE('lib/replace') # in Samba4 we build some extra modules, and add extra # capabilities to the ldb cmdline tools -- cgit