1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

build: move dynconfig for top level build up

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Andrew Bartlett 2011-06-21 12:48:22 +10:00 committed by Andrew Tridgell
parent 894b0273fc
commit 35a9c23a01
3 changed files with 4 additions and 4 deletions

View File

@ -108,7 +108,7 @@ Build.BuildContext.dynconfig_cflags = dynconfig_cflags
def build(bld):
cflags = bld.dynconfig_cflags()
bld.SAMBA_SUBSYSTEM('DYNCONFIG',
'../../dynconfig/dynconfig.c',
'dynconfig.c',
deps='replace talloc',
public_headers=os_path_relpath(os.path.join(Options.launch_dir, 'version.h'), bld.curdir),
header_path='samba',

View File

@ -32,7 +32,7 @@ def set_options(opt):
opt.BUILTIN_DEFAULT('NONE')
opt.PRIVATE_EXTENSION_DEFAULT('samba4')
opt.RECURSE('lib/replace')
opt.RECURSE('source4/dynconfig')
opt.RECURSE('dynconfig')
opt.RECURSE('source4/lib/ldb')
opt.RECURSE('selftest')
opt.RECURSE('source4/lib/tls')
@ -89,7 +89,7 @@ def configure(conf):
if int(conf.env['PYTHON_VERSION'][0]) >= 3:
raise Utils.WafError('Python version 3.x is not supported by Samba yet')
conf.RECURSE('source4/dynconfig')
conf.RECURSE('dynconfig')
conf.RECURSE('source4/lib/ldb')
conf.RECURSE('source4/heimdal_build')
conf.RECURSE('source4/lib/tls')

View File

@ -39,7 +39,7 @@ bld.RECURSE('lib/tevent')
bld.RECURSE('lib/ccan')
bld.RECURSE('lib/tdb_compat')
bld.RECURSE('source4/lib/ldb')
bld.RECURSE('source4/dynconfig')
bld.RECURSE('dynconfig')
bld.RECURSE('lib/util/charset')
bld.RECURSE('source4/scripting/python')
bld.RECURSE('source4/param')