diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 07:44:58 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:22:30 +0200 |
commit | d49ae221d00bbff953351d23a462118f45f6073b (patch) | |
tree | d95c22496f8f888e0cdd457313ac8388c9857505 /source3/wscript_build | |
parent | bc2789e0f8240ff4826870374cae6868342ac281 (diff) | |
download | samba-d49ae221d00bbff953351d23a462118f45f6073b.tar.gz samba-d49ae221d00bbff953351d23a462118f45f6073b.tar.bz2 samba-d49ae221d00bbff953351d23a462118f45f6073b.zip |
build: list sources of libcli_netlogon3 library directly in the definition
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-x | source3/wscript_build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 39d5764da8..f32a923a79 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -LIBCLI_NETLOGON_SRC = 'rpc_client/cli_netlogon.c rpc_client/util_netlogon.c' - # this includes only the low level parse code, not stuff # that requires knowledge of security contexts REG_PARSE_PRS_SRC = '''registry/reg_parse_prs.c''' @@ -999,7 +997,7 @@ bld.SAMBA3_LIBRARY('libcli_lsa3', private_library=True) bld.SAMBA3_LIBRARY('libcli_netlogon3', - source=LIBCLI_NETLOGON_SRC, + source='rpc_client/cli_netlogon.c rpc_client/util_netlogon.c', deps='RPC_NDR_NETLOGON INIT_NETLOGON cliauth param', private_library=True) |