diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:33:08 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:20 +0200 |
commit | a341a679e23e71579a3862fcd7fe25c30041dd0f (patch) | |
tree | b7e3735b81c04bef1de0a7d2977e2e5a04db4ade /source3 | |
parent | e03ddd1f0eaf093a942ed89a92adbff746c3cc85 (diff) | |
download | samba-a341a679e23e71579a3862fcd7fe25c30041dd0f.tar.gz samba-a341a679e23e71579a3862fcd7fe25c30041dd0f.tar.bz2 samba-a341a679e23e71579a3862fcd7fe25c30041dd0f.zip |
build: list sources of lib msrpc3 directly in def, removing vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript_build | 15 |
1 files changed, 5 insertions, 10 deletions
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', |