1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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>
This commit is contained in:
Michael Adam 2013-09-23 09:59:38 +02:00
parent 7059e00920
commit bc4aad7ae6

View File

@ -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,