From 351d7686a1a8e23b5dc46ae3f560a660b3620f46 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 09:49:10 +0200 Subject: build: list source of binary nmblookup directly in source, 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 abafe29fd0..7e5cd1f9a6 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -NMBLOOKUP_SRC = '''utils/nmblookup.c''' - SMBTORTURE_SRC1 = '''torture/torture.c torture/nbio.c torture/scanner.c torture/utable.c torture/denytest.c torture/mangle_test.c torture/nbench.c @@ -1280,13 +1278,12 @@ bld.SAMBA3_BINARY('smbget', smbclient''') bld.SAMBA3_BINARY('nmblookup', - source=NMBLOOKUP_SRC, + source='utils/nmblookup.c', deps=''' talloc param popt_samba3 - LIBNMB''', - vars=locals()) + LIBNMB''') bld.SAMBA3_BINARY('smbtorture' + bld.env.suffix3, source=SMBTORTURE_SRC, -- cgit