diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 10:04:53 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:26:35 +0200 |
commit | e05a7a207e601ff94a662856f77e4403b14a1cd3 (patch) | |
tree | 0d69dd5dfe44ce6ade1ab015dd6b6fbe89fb7894 /source3 | |
parent | 2dc6174c70beeac93fecd817fad6e6ce3bc19ee7 (diff) | |
download | samba-e05a7a207e601ff94a662856f77e4403b14a1cd3.tar.gz samba-e05a7a207e601ff94a662856f77e4403b14a1cd3.tar.bz2 samba-e05a7a207e601ff94a662856f77e4403b14a1cd3.zip |
build: list source of binary dbwrap_tool 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')
-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 8e1e05d1b5..0151b0d28b 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -DBWRAP_TOOL_SRC = 'utils/dbwrap_tool.c' - DBWRAP_TORTURE_SRC = 'utils/dbwrap_torture.c' SPLIT_TOKENS_SRC = 'utils/split_tokens.c' @@ -1402,11 +1400,10 @@ bld.SAMBA3_BINARY('test_lp_load', install=False) bld.SAMBA3_BINARY('dbwrap_tool', - source=DBWRAP_TOOL_SRC, + source='utils/dbwrap_tool.c', deps=''' talloc - popt_samba3''', - vars=locals()) + popt_samba3''') bld.SAMBA3_BINARY('dbwrap_torture', source=DBWRAP_TORTURE_SRC, |