From 17a17783f998812e229844efc704ac8ee3b19ed6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 09:33:57 +0200 Subject: build: list source of binary smbget directly in def, 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 87c92b1c25..3a06c6d0f4 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -SMBGET_SRC = '''utils/smbget.c''' - RPCCLIENT_SRC1 = '''rpcclient/rpcclient.c rpcclient/cmd_lsarpc.c rpcclient/cmd_samr.c rpcclient/cmd_spoolss.c rpcclient/cmd_netlogon.c rpcclient/cmd_srvsvc.c @@ -1282,12 +1280,11 @@ bld.SAMBA3_BINARY('pdbedit', PASSWD_UTIL''') bld.SAMBA3_BINARY('smbget', - source=SMBGET_SRC, + source='utils/smbget.c', deps=''' talloc popt_samba3 - smbclient''', - vars=locals()) + smbclient''') bld.SAMBA3_BINARY('nmblookup', source=NMBLOOKUP_SRC, -- cgit