1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

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>
This commit is contained in:
Michael Adam 2013-09-23 09:54:28 +02:00
parent 74970a4caf
commit 46f31157ca

View File

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