diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 10:05:43 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:26:38 +0200 |
commit | ba68add806c5c90268f583283a02b13d762df9f6 (patch) | |
tree | 48099f8da3d4126f8e3f6bf78838cdca04c2c089 /source3 | |
parent | e05a7a207e601ff94a662856f77e4403b14a1cd3 (diff) | |
download | samba-ba68add806c5c90268f583283a02b13d762df9f6.tar.gz samba-ba68add806c5c90268f583283a02b13d762df9f6.tar.bz2 samba-ba68add806c5c90268f583283a02b13d762df9f6.zip |
build: list source of dbwrap_torture 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 0151b0d28b..14373a9c3c 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -DBWRAP_TORTURE_SRC = 'utils/dbwrap_torture.c' - SPLIT_TOKENS_SRC = 'utils/split_tokens.c' LIBS='ICONV' @@ -1406,12 +1404,11 @@ bld.SAMBA3_BINARY('dbwrap_tool', popt_samba3''') bld.SAMBA3_BINARY('dbwrap_torture', - source=DBWRAP_TORTURE_SRC, + source='utils/dbwrap_torture.c', deps=''' talloc popt_samba3''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('split_tokens', source=SPLIT_TOKENS_SRC, |