diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:49:10 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:25:39 +0200 |
commit | 351d7686a1a8e23b5dc46ae3f560a660b3620f46 (patch) | |
tree | 05fa5d9db81dec1b4a7eec7bd2a22d3a522e054b /source3/wscript_build | |
parent | a0ec8b50405b91245424a9b7c04aa22abe99d80a (diff) | |
download | samba-351d7686a1a8e23b5dc46ae3f560a660b3620f46.tar.gz samba-351d7686a1a8e23b5dc46ae3f560a660b3620f46.tar.bz2 samba-351d7686a1a8e23b5dc46ae3f560a660b3620f46.zip |
build: list source of binary nmblookup directly in source, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-x | source3/wscript_build | 7 |
1 files changed, 2 insertions, 5 deletions
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, |