1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

build: Multi-line a long list of deps

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2019-12-06 13:39:18 +01:00 committed by Jeremy Allison
parent e79e943824
commit 63600b4f78

View File

@ -9,7 +9,17 @@ bld.SAMBA_LIBRARY('MESSAGING_SEND',
bld.SAMBA_LIBRARY('MESSAGING',
source='messaging.c messaging_handlers.c',
public_deps='samba-util NDR_IRPC UNIX_PRIVS cluster ndr dcerpc messages_util server_id_db talloc_report',
public_deps='''
samba-util
NDR_IRPC
UNIX_PRIVS
cluster
ndr
dcerpc
messages_util
server_id_db
talloc_report
''',
private_library=True
)