diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:59:38 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:26:17 +0200 |
commit | bc4aad7ae6dc1a7506c56cdb4d6498aeeb32228f (patch) | |
tree | 238a5ca443e18ec26d5cd6ef3e0bc807df54008a /source3/wscript_build | |
parent | 7059e00920036216513329f0bae6e7b32ba18767 (diff) | |
download | samba-bc4aad7ae6dc1a7506c56cdb4d6498aeeb32228f.tar.gz samba-bc4aad7ae6dc1a7506c56cdb4d6498aeeb32228f.tar.bz2 samba-bc4aad7ae6dc1a7506c56cdb4d6498aeeb32228f.zip |
build: list sources of binary debug2html 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 90695d6124..8cd7d26fcf 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -DEBUG2HTML_SRC = '''utils/debug2html.c utils/debugparse.c''' - SMBFILTER_SRC = '''utils/smbfilter.c''' WINBIND_WINS_NSS_SRC = '''../nsswitch/wins.c''' @@ -1365,10 +1363,9 @@ bld.SAMBA3_BINARY('locktest2', install=False) bld.SAMBA3_BINARY('debug2html', - source=DEBUG2HTML_SRC, + source='''utils/debug2html.c utils/debugparse.c''', deps='''talloc popt''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('smbfilter', source=SMBFILTER_SRC, |