From a341a679e23e71579a3862fcd7fe25c30041dd0f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 08:33:08 +0200 Subject: build: list sources of lib msrpc3 directly in def, removing vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'source3') diff --git a/source3/wscript_build b/source3/wscript_build index 68fcd1579f..5ff86c0f2a 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,14 +3,6 @@ from samba_utils import * import samba_version, samba3 -LIBMSRPC_SRC = ''' - rpc_client/cli_pipe.c - rpc_client/rpc_transport_np.c - rpc_client/rpc_transport_sock.c - rpc_client/rpc_transport_tstream.c - librpc/rpc/dcerpc_helpers.c - ''' - # # registry-related objects # @@ -416,13 +408,16 @@ bld.SAMBA3_LIBRARY('gse', private_library=True) bld.SAMBA3_LIBRARY('msrpc3', - source='${LIBMSRPC_SRC}', + source='''rpc_client/cli_pipe.c + rpc_client/rpc_transport_np.c + rpc_client/rpc_transport_sock.c + rpc_client/rpc_transport_tstream.c + librpc/rpc/dcerpc_helpers.c''', deps='''ndr ndr-standard RPC_NDR_EPMAPPER NTLMSSP_COMMON COMMON_SCHANNEL LIBCLI_AUTH LIBTSOCKET gse dcerpc-binding libsmb ndr-table''', - vars=locals(), private_library=True) bld.SAMBA3_LIBRARY('gpo', -- cgit