diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 10:02:11 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:26:26 +0200 |
commit | ecb3c92b2543fb9a5d5bdee3b02333bd552ea554 (patch) | |
tree | a1d263da43f19946be0748c9a5beac42e2bc6682 /source3 | |
parent | 54b31d1f097c3f69bbbe384e142ad030fcb863f8 (diff) | |
download | samba-ecb3c92b2543fb9a5d5bdee3b02333bd552ea554.tar.gz samba-ecb3c92b2543fb9a5d5bdee3b02333bd552ea554.tar.bz2 samba-ecb3c92b2543fb9a5d5bdee3b02333bd552ea554.zip |
build: list sources of binary ntlm_auth directly in dev, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript_build | 9 |
1 files changed, 2 insertions, 7 deletions
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', |