From 43bd918446323f940f82b8b627730433657f367b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 08:28:14 +0200 Subject: build: list sources of subsys LIBNTLMSSP in definition, removing vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'source3') diff --git a/source3/wscript_build b/source3/wscript_build index 4fa1afb326..57660ae4e7 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,10 +3,6 @@ from samba_utils import * import samba_version, samba3 -LIBNTLMSSP_SRC = ''' - libsmb/ntlmssp.c - libsmb/ntlmssp_wrap.c''' - TLDAP_SRC = '''lib/tldap.c lib/tldap_util.c lib/util_tsock.c''' LIBSMB_SRC = '''libsmb/clientgen.c libsmb/cliconnect.c libsmb/clifile.c @@ -682,9 +678,9 @@ bld.SAMBA3_LIBRARY('smbd_shim', private_library=True) bld.SAMBA3_SUBSYSTEM('LIBNTLMSSP', - source=LIBNTLMSSP_SRC, - deps='NDR_NTLMSSP NTLMSSP_COMMON wbclient', - vars=locals()) + source='''libsmb/ntlmssp.c + libsmb/ntlmssp_wrap.c''', + deps='NDR_NTLMSSP NTLMSSP_COMMON wbclient') bld.SAMBA3_SUBSYSTEM('auth_generic', source='libsmb/auth_generic.c', -- cgit