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 | |
parent | 3254003956d069df3860cba3f58d11f1055e06b0 (diff) | |
download | samba-6ef00262efd7e42b5ca5ca9ebe20af4863e7611b.tar.gz samba-6ef00262efd7e42b5ca5ca9ebe20af4863e7611b.tar.bz2 samba-6ef00262efd7e42b5ca5ca9ebe20af4863e7611b.zip |
build: don't install talloc_testsuite and ldbtest
-rw-r--r-- | lib/talloc/wscript | 3 | ||||
-rw-r--r-- | source4/lib/ldb/wscript | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 8eb299e898..ad2a38e9f0 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -22,4 +22,5 @@ def build(bld): bld.SAMBA_BINARY('talloc_testsuite', 'testsuite.c testsuite_main.c', - deps='talloc') + deps='talloc', + install=False) 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') - |