mirror of
https://github.com/samba-team/samba.git
synced 2025-08-29 13:49:30 +03:00
build: list source of binary pdbedit 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:
@ -3,8 +3,6 @@
|
|||||||
from samba_utils import *
|
from samba_utils import *
|
||||||
import samba_version, samba3
|
import samba_version, samba3
|
||||||
|
|
||||||
PDBEDIT_SRC = '''utils/pdbedit.c'''
|
|
||||||
|
|
||||||
SMBGET_SRC = '''utils/smbget.c'''
|
SMBGET_SRC = '''utils/smbget.c'''
|
||||||
|
|
||||||
RPCCLIENT_SRC1 = '''rpcclient/rpcclient.c rpcclient/cmd_lsarpc.c
|
RPCCLIENT_SRC1 = '''rpcclient/rpcclient.c rpcclient/cmd_lsarpc.c
|
||||||
@ -1275,14 +1273,13 @@ bld.SAMBA3_BINARY('smbpasswd',
|
|||||||
PASSCHANGE''')
|
PASSCHANGE''')
|
||||||
|
|
||||||
bld.SAMBA3_BINARY('pdbedit',
|
bld.SAMBA3_BINARY('pdbedit',
|
||||||
source=PDBEDIT_SRC,
|
source='utils/pdbedit.c',
|
||||||
deps='''
|
deps='''
|
||||||
talloc
|
talloc
|
||||||
param
|
param
|
||||||
popt_samba3
|
popt_samba3
|
||||||
pdb
|
pdb
|
||||||
PASSWD_UTIL''',
|
PASSWD_UTIL''')
|
||||||
vars=locals())
|
|
||||||
|
|
||||||
bld.SAMBA3_BINARY('smbget',
|
bld.SAMBA3_BINARY('smbget',
|
||||||
source=SMBGET_SRC,
|
source=SMBGET_SRC,
|
||||||
|
Reference in New Issue
Block a user