summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2015-03-12 13:16:49 +0000
committerMichael Adam <obnox@samba.org>2015-03-17 11:30:51 +0100
commit9dfc521642d643b4e2e2537596021554382a2efa (patch)
treefb2df33078fdaf1dd22ac6629ffcd4a30092feb8 /wscript
parent31c3806a1c62588f111cb174ffbdbdc27fc563b2 (diff)
downloadsamba-9dfc521642d643b4e2e2537596021554382a2efa.tar.gz
waf: Do not recurse into ntdb
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 1 insertions, 3 deletions
diff --git a/wscript b/wscript
index d6db12c4a73..215bcaf4adc 100644
--- a/wscript
+++ b/wscript
@@ -37,7 +37,6 @@ def set_options(opt):
opt.RECURSE('lib/replace')
opt.RECURSE('dynconfig')
opt.RECURSE('lib/ldb')
- opt.RECURSE('lib/ntdb')
opt.RECURSE('selftest')
opt.RECURSE('source4/lib/tls')
opt.RECURSE('pidl')
@@ -153,7 +152,6 @@ def configure(conf):
conf.RECURSE('source4/ntvfs/sysdep')
conf.RECURSE('lib/util')
conf.RECURSE('lib/ccan')
- conf.RECURSE('lib/ntdb')
conf.RECURSE('lib/util/charset')
conf.RECURSE('source4/auth')
conf.RECURSE('nsswitch')
@@ -262,7 +260,7 @@ def pydoctor(ctx):
'''build python apidocs'''
bp = os.path.abspath('bin/python')
mpaths = {}
- modules = ['talloc', 'tdb', 'ldb', 'ntdb']
+ modules = ['talloc', 'tdb', 'ldb']
for m in modules:
f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
try: