diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:53:43 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:25:53 +0200 |
commit | 74970a4caf1e89ff4e86db7b8984b31c70b3b739 (patch) | |
tree | 6b630aec944a532e1de2b2163b499f9556ce1d08 /source3/wscript_build | |
parent | f70f3a060108550eae6e2d4360d96a9341ad146a (diff) | |
download | samba-74970a4caf1e89ff4e86db7b8984b31c70b3b739.tar.gz samba-74970a4caf1e89ff4e86db7b8984b31c70b3b739.tar.bz2 samba-74970a4caf1e89ff4e86db7b8984b31c70b3b739.zip |
build: list sources of binary vfstest directly in def, 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 | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index b868e4e3cc..4884673812 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,9 +3,6 @@ from samba_utils import * import samba_version, samba3 -VFSTEST_SRC = '''torture/cmd_vfs.c torture/vfstest.c - torture/vfstest_chain.c''' - LOG2PCAP_SRC = '''utils/log2pcaphex.c''' LOCKTEST2_SRC = '''torture/locktest2.c''' @@ -1363,13 +1360,14 @@ bld.SAMBA3_BINARY('pdbtest', install=False) bld.SAMBA3_BINARY('vfstest', - source=VFSTEST_SRC, + source='''torture/cmd_vfs.c + torture/vfstest.c + torture/vfstest_chain.c''', deps=''' vfs popt_samba3 SMBREADLINE''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('log2pcap', source=LOG2PCAP_SRC, |