summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-23 09:59:38 +0200
committerMichael Adam <obnox@samba.org>2013-09-23 20:26:17 +0200
commitbc4aad7ae6dc1a7506c56cdb4d6498aeeb32228f (patch)
tree238a5ca443e18ec26d5cd6ef3e0bc807df54008a /source3/wscript_build
parent7059e00920036216513329f0bae6e7b32ba18767 (diff)
downloadsamba-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-xsource3/wscript_build7
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,