summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-23 09:54:28 +0200
committerMichael Adam <obnox@samba.org>2013-09-23 20:25:57 +0200
commit46f31157cabbb86faed3c752c2c2edf0398cbe4e (patch)
tree876357d1063815b8033c11225636e79d350bccee /source3/wscript_build
parent74970a4caf1e89ff4e86db7b8984b31c70b3b739 (diff)
downloadsamba-46f31157cabbb86faed3c752c2c2edf0398cbe4e.tar.gz
samba-46f31157cabbb86faed3c752c2c2edf0398cbe4e.tar.bz2
samba-46f31157cabbb86faed3c752c2c2edf0398cbe4e.zip
build: list source of binary log2pcap 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 4884673812..9a5a9bf538 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -3,8 +3,6 @@
from samba_utils import *
import samba_version, samba3
-LOG2PCAP_SRC = '''utils/log2pcaphex.c'''
-
LOCKTEST2_SRC = '''torture/locktest2.c'''
SMBCACLS_SRC = '''utils/smbcacls.c'''
@@ -1370,10 +1368,9 @@ bld.SAMBA3_BINARY('vfstest',
install=False)
bld.SAMBA3_BINARY('log2pcap',
- source=LOG2PCAP_SRC,
+ source='utils/log2pcaphex.c',
deps='''talloc popt''',
- install=False,
- vars=locals())
+ install=False)
bld.SAMBA3_BINARY('locktest2',
source=LOCKTEST2_SRC,