diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 10:06:38 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:26:41 +0200 |
commit | 9ccca6397c4d504202405564d1a89a9c831629f9 (patch) | |
tree | 734cc23e5e3a12e987b93e9071f2889d90fdbcc5 /source3/wscript_build | |
parent | ba68add806c5c90268f583283a02b13d762df9f6 (diff) | |
download | samba-9ccca6397c4d504202405564d1a89a9c831629f9.tar.gz samba-9ccca6397c4d504202405564d1a89a9c831629f9.tar.bz2 samba-9ccca6397c4d504202405564d1a89a9c831629f9.zip |
build: list source of binary split_tokens 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 | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 14373a9c3c..b61201104d 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -SPLIT_TOKENS_SRC = 'utils/split_tokens.c' - LIBS='ICONV' config_h = "../include/config.h" @@ -1411,12 +1409,11 @@ bld.SAMBA3_BINARY('dbwrap_torture', install=False) bld.SAMBA3_BINARY('split_tokens', - source=SPLIT_TOKENS_SRC, + source='utils/split_tokens.c', deps=''' talloc popt_samba3''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('vlp', source='printing/tests/vlp.c', |