From f70f3a060108550eae6e2d4360d96a9341ad146a Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 09:52:44 +0200 Subject: build: list source of binary pdbtest 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 4161c87ed4..b868e4e3cc 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -PDBTEST_SRC = '''torture/pdbtest.c''' - VFSTEST_SRC = '''torture/cmd_vfs.c torture/vfstest.c torture/vfstest_chain.c''' @@ -1355,15 +1353,14 @@ bld.SAMBA3_BINARY('sharesec', vars=locals()) bld.SAMBA3_BINARY('pdbtest', - source=PDBTEST_SRC, + source='torture/pdbtest.c', deps=''' talloc pdb popt_samba3 AUTH_COMMON auth''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('vfstest', source=VFSTEST_SRC, -- cgit