From ecb3c92b2543fb9a5d5bdee3b02333bd552ea554 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 10:02:11 +0200 Subject: build: list sources of binary ntlm_auth directly in dev, remove vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'source3/wscript_build') diff --git a/source3/wscript_build b/source3/wscript_build index 8407c2a45f..95775c45bd 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,10 +3,6 @@ from samba_utils import * import samba_version, samba3 -NTLM_AUTH_SRC1 = '''utils/ntlm_auth.c utils/ntlm_auth_diagnostics.c''' - -NTLM_AUTH_SRC = '''${NTLM_AUTH_SRC1}''' - VLP_SRC = '''printing/tests/vlp.c''' RPC_OPEN_TCP_SRC = 'torture/rpc_open_tcp.c' @@ -1380,15 +1376,14 @@ bld.SAMBA3_BINARY('versiontest', vars=locals()) bld.SAMBA3_BINARY('ntlm_auth', - source=NTLM_AUTH_SRC, + source='''utils/ntlm_auth.c utils/ntlm_auth_diagnostics.c''', deps=''' talloc krb5samba iniparser libsmb popt_samba3 - LIBNTLMSSP gse gensec''', - vars=locals()) + LIBNTLMSSP gse gensec''') bld.SAMBA3_BINARY('timelimit', source='script/tests/timelimit.c', -- cgit