1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

build: don't install talloc_testsuite and ldbtest

This commit is contained in:
Andrew Tridgell 2010-03-19 19:50:57 +11:00
parent 3254003956
commit 6ef00262ef
2 changed files with 6 additions and 3 deletions

View File

@ -22,4 +22,5 @@ def build(bld):
bld.SAMBA_BINARY('talloc_testsuite',
'testsuite.c testsuite_main.c',
deps='talloc')
deps='talloc',
install=False)

View File

@ -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')