diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:45:21 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:43 +0200 |
commit | f21fefb378deec5a372cc7458093a6a54b390aef (patch) | |
tree | 4f39692e8b746ba7549babe0a515e523f69a0097 | |
parent | dc89feefd33b9bed5c47da5d2698d9878808b8bf (diff) | |
download | samba-f21fefb378deec5a372cc7458093a6a54b390aef.tar.gz samba-f21fefb378deec5a372cc7458093a6a54b390aef.tar.bz2 samba-f21fefb378deec5a372cc7458093a6a54b390aef.zip |
build: list source of subsys RPC_CLIENT_SCHANNEL direclty in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rwxr-xr-x | source3/wscript_build | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index d3b69a98f9..c6d453c2e1 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -RPC_CLIENT_SCHANNEL_SRC = '''rpc_client/cli_pipe_schannel.c''' - LOCKING_SRC = '''locking/locking.c locking/brlock.c locking/posix.c locking/share_mode_lock.c''' PRIVILEGES_SRC = '''lib/privileges.c''' @@ -966,9 +964,8 @@ bld.SAMBA3_SUBSYSTEM('LIBCLI_WINREG_INTERNAL', deps='LIBCLI_WINREG RPC_NCACN_NP') bld.SAMBA3_SUBSYSTEM('RPC_CLIENT_SCHANNEL', - source=RPC_CLIENT_SCHANNEL_SRC, - deps='samba-util krb5samba', - vars=locals()) + source='rpc_client/cli_pipe_schannel.c', + deps='samba-util krb5samba') bld.SAMBA3_SUBSYSTEM('INIT_LSA', source='rpc_client/init_lsa.c', |