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

build: list source of binary sharesec() 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:58:30 +02:00
parent 351bf39de4
commit 7059e00920

View File

@ -3,9 +3,6 @@
from samba_utils import *
import samba_version, samba3
SHARESEC_SRC0 = 'utils/sharesec.c'
SHARESEC_SRC = '''${SHARESEC_SRC0}'''
DEBUG2HTML_SRC = '''utils/debug2html.c utils/debugparse.c'''
SMBFILTER_SRC = '''utils/smbfilter.c'''
@ -1328,11 +1325,10 @@ bld.SAMBA3_BINARY('eventlogadm',
LIBEVENTLOG''')
bld.SAMBA3_BINARY('sharesec',
source=SHARESEC_SRC,
source='utils/sharesec.c',
deps='''
talloc
popt_samba3''',
vars=locals())
popt_samba3''')
bld.SAMBA3_BINARY('pdbtest',
source='torture/pdbtest.c',