diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 10:04:04 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:26:32 +0200 |
commit | 2dc6174c70beeac93fecd817fad6e6ce3bc19ee7 (patch) | |
tree | 8d62ab4977b12da3d180b360653ae3d22f524804 /source3/wscript_build | |
parent | 636b7111c03526b9649fcfa7eb2fdfad1e7d289c (diff) | |
download | samba-2dc6174c70beeac93fecd817fad6e6ce3bc19ee7.tar.gz samba-2dc6174c70beeac93fecd817fad6e6ce3bc19ee7.tar.bz2 samba-2dc6174c70beeac93fecd817fad6e6ce3bc19ee7.zip |
build: list source of binary rpc_open_tcp directly in dev, 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 80d1c47b19..8e1e05d1b5 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -RPC_OPEN_TCP_SRC = 'torture/rpc_open_tcp.c' - DBWRAP_TOOL_SRC = 'utils/dbwrap_tool.c' DBWRAP_TORTURE_SRC = 'utils/dbwrap_torture.c' @@ -1389,12 +1387,11 @@ bld.SAMBA3_BINARY('timelimit', vars=locals()) bld.SAMBA3_BINARY('rpc_open_tcp', - source=RPC_OPEN_TCP_SRC, + source='torture/rpc_open_tcp.c', deps=''' talloc msrpc3''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('test_lp_load', source='param/test_lp_load.c', |