diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:51:54 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:25:46 +0200 |
commit | d15064adf2ea8972c091de5be4bb10d84bb43c3a (patch) | |
tree | 0bcb9307e1a57cf1606db8ad2ccbf49a30868e36 | |
parent | 26bc1d5e666e17bfa2e1e241e17437de4eed0ab4 (diff) | |
download | samba-d15064adf2ea8972c091de5be4bb10d84bb43c3a.tar.gz samba-d15064adf2ea8972c091de5be4bb10d84bb43c3a.tar.bz2 samba-d15064adf2ea8972c091de5be4bb10d84bb43c3a.zip |
build: list source of binary msgtest direcly in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-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 479b38258c..4161c87ed4 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -MSGTEST_SRC = '''torture/msgtest.c''' - PDBTEST_SRC = '''torture/pdbtest.c''' VFSTEST_SRC = '''torture/cmd_vfs.c torture/vfstest.c @@ -1315,12 +1313,11 @@ bld.SAMBA3_BINARY('replacetort', install=False) bld.SAMBA3_BINARY('msgtest', - source=MSGTEST_SRC, + source='torture/msgtest.c', deps=''' talloc param''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('smbcacls', source=SMBCACLS_SRC, |