From d49b39e085176356283cfdb20cc63e20c18642a7 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 09:19:31 +0200 Subject: build: list sources of binary smbcontrol directly in sources, 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/wscript_build') diff --git a/source3/wscript_build b/source3/wscript_build index c7733d406c..065b95bd75 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -SMBCONTROL_SRC = '''utils/smbcontrol.c''' - SMBTREE_SRC = '''utils/smbtree.c''' TESTPARM_SRC = 'utils/testparm.c' @@ -1264,13 +1262,12 @@ bld.SAMBA3_BINARY('smbstatus', PROFILE''') bld.SAMBA3_BINARY('smbcontrol', - source=SMBCONTROL_SRC, + source='utils/smbcontrol.c', deps=''' talloc param popt_samba3 - PRINTBASE''', - vars=locals()) + PRINTBASE''') bld.SAMBA3_BINARY('smbtree', source=SMBTREE_SRC, -- cgit