From a7e0d9d7be09b0f6a2a8949f589b16e6157cb659 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 07:40:42 +0200 Subject: build: list source of subsystem PASSCHANGE directly in definition and remove vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/wscript_build b/source3/wscript_build index 31ad867ba4..bf453bfe9e 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -PASSCHANGE_SRC = '''libsmb/passchange.c''' - LIBCLI_SPOOLSS_SRC = '''rpc_client/cli_spoolss.c rpc_client/init_spoolss.c''' @@ -947,12 +945,11 @@ bld.SAMBA3_SUBSYSTEM('PLAINTEXT_AUTH', vars=locals()) bld.SAMBA3_SUBSYSTEM('PASSCHANGE', - source=PASSCHANGE_SRC, + source='libsmb/passchange.c', deps='''LIBCLI_SAMR INIT_LSA msrpc3 - krb5samba''', - vars=locals()) + krb5samba''') bld.SAMBA3_SUBSYSTEM('SAMBA_VERSION', source='lib/version.c', -- cgit