diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-22 17:15:38 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-22 17:48:24 -0700 |
commit | c031329af1f4300237ba200a4d6ff5eb041d8e3d (patch) | |
tree | 77167dea1b8b630862d61fd85cf918f55af5ddbf | |
parent | 1c3c9a483be6d63b8efb67bfd2c04ef9302ccce6 (diff) | |
download | samba-c031329af1f4300237ba200a4d6ff5eb041d8e3d.tar.gz samba-c031329af1f4300237ba200a4d6ff5eb041d8e3d.tar.bz2 samba-c031329af1f4300237ba200a4d6ff5eb041d8e3d.zip |
ldb: Depend directly on replace, fixes the build on systems with
tdb and tevent installed in the system.
-rw-r--r-- | source4/lib/ldb/wscript | 3 |
1 files changed, 3 insertions, 0 deletions
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 |