From de8aaf06937fdc4782fce25e1276c945bafb6712 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 08:47:20 +0200 Subject: build: list sources of subsys LOCKING directly in def, remove vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/wscript_build') diff --git a/source3/wscript_build b/source3/wscript_build index c6d453c2e1..8f54fd7690 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -LOCKING_SRC = '''locking/locking.c locking/brlock.c locking/posix.c locking/share_mode_lock.c''' - PRIVILEGES_SRC = '''lib/privileges.c''' PASSDB_GET_SET_SRC = '''passdb/pdb_get_set.c''' @@ -790,13 +788,15 @@ bld.SAMBA3_LIBRARY('smbd_base', vars=locals()) bld.SAMBA3_SUBSYSTEM('LOCKING', - source='${LOCKING_SRC}', + source='''locking/locking.c + locking/brlock.c + locking/posix.c + locking/share_mode_lock.c''', deps=''' tdb_compat talloc NDR_OPEN_FILES - FNAME_UTIL''', - vars=locals()) + FNAME_UTIL''') bld.SAMBA3_SUBSYSTEM('PROFILE', source='${PROFILE_SRC}', -- cgit