diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-14 14:32:13 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-14 17:14:05 +0000 |
commit | 6e762f90030b214a24bfae5cf048fad9893f53c8 (patch) | |
tree | b95b0b87071457e28c868b5c0686564610958eb2 /source4/lib/ldb | |
parent | d2dfa868fd7e77879ff40b7bbe3b52a0ceece277 (diff) | |
download | samba-6e762f90030b214a24bfae5cf048fad9893f53c8.tar.gz samba-6e762f90030b214a24bfae5cf048fad9893f53c8.tar.bz2 samba-6e762f90030b214a24bfae5cf048fad9893f53c8.zip |
Re-enable ldb-cmdline for the moment, as it is used by oLschema2ldif.
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/wscript | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index b98406f2e6..5c4054a918 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -208,11 +208,6 @@ def build(bld): includes='include', cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir) - bld.SAMBA_LIBRARY('ldb-cmdline', - source='tools/ldbutil.c tools/cmdline.c', - deps='ldb dl popt', - private_library=True) - LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename' for t in LDB_TOOLS.split(): bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='ldb-cmdline ldb', @@ -222,6 +217,11 @@ def build(bld): bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='ldb-cmdline ldb', install=False) + bld.SAMBA_LIBRARY('ldb-cmdline', + source='tools/ldbutil.c tools/cmdline.c', + deps='ldb dl popt', + private_library=True) + def test(ctx): '''run ldb testsuite''' |