diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-19 19:50:57 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:54 +1000 |
commit | 6ef00262efd7e42b5ca5ca9ebe20af4863e7611b (patch) | |
tree | fbd0991534c063f6302d4cb1a4803958a5b405bd /source4/lib | |
parent | 3254003956d069df3860cba3f58d11f1055e06b0 (diff) | |
download | samba-6ef00262efd7e42b5ca5ca9ebe20af4863e7611b.tar.gz samba-6ef00262efd7e42b5ca5ca9ebe20af4863e7611b.tar.bz2 samba-6ef00262efd7e42b5ca5ca9ebe20af4863e7611b.zip |
build: don't install talloc_testsuite and ldbtest
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/wscript | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 8389545fe5..053d11200f 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -113,12 +113,14 @@ def build(bld): 'tools/ldbutil.c tools/cmdline.c', 'ldb dl popt') - LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename ldbtest' + LDB_TOOLS='ldbadd ldbsearch ldbdel ldbmodify ldbedit ldbrename' for t in LDB_TOOLS.split(): bld.SAMBA_BINARY(t, 'tools/%s.c' % t, deps='LIBLDB_CMDLINE') + # ldbtest doesn't get installed + bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='LIBLDB_CMDLINE', install=False) + if s4_build: bld.SAMBA_PYTHON('pyldb', 'pyldb.c', deps='ldb', realname='ldb.so') - |