diff options
author | Volker Lendecke <vl@samba.org> | 2015-03-12 13:16:49 +0000 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2015-03-17 11:30:51 +0100 |
commit | 9dfc521642d643b4e2e2537596021554382a2efa (patch) | |
tree | fb2df33078fdaf1dd22ac6629ffcd4a30092feb8 /wscript | |
parent | 31c3806a1c62588f111cb174ffbdbdc27fc563b2 (diff) | |
download | samba-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-- | wscript | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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: |