diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:43:28 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:37 +0200 |
commit | 85b18b37905909a881c72cd54828c7eb8b4cfb46 (patch) | |
tree | 7328ae357e56f8929766bd2a0d7551e0946ed65f | |
parent | c54cde2989e6370abe4113f346583c7760191f53 (diff) | |
download | samba-85b18b37905909a881c72cd54828c7eb8b4cfb46.tar.gz samba-85b18b37905909a881c72cd54828c7eb8b4cfb46.tar.bz2 samba-85b18b37905909a881c72cd54828c7eb8b4cfb46.zip |
build: list sources of SERVICES directly 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 | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 2e89cdcd82..89d4bb9114 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,13 +3,6 @@ from samba_utils import * import samba_version, samba3 -SERVICES_SRC = '''services/svc_spoolss.c - services/svc_rcinit.c - services/svc_winreg_glue.c - services/svc_netlogon.c - services/svc_winreg.c - services/svc_wins.c''' - LIB_EVENTLOG_SRC = '''lib/eventlog/eventlog.c''' RPC_CLIENT_SCHANNEL_SRC = '''rpc_client/cli_pipe_schannel.c''' @@ -882,9 +875,13 @@ bld.SAMBA3_SUBSYSTEM('LIBNMB', deps='addns lmhosts resolv') bld.SAMBA3_SUBSYSTEM('SERVICES', - source=SERVICES_SRC, - deps='samba-util', - vars=locals()) + source='''services/svc_spoolss.c + services/svc_rcinit.c + services/svc_winreg_glue.c + services/svc_netlogon.c + services/svc_winreg.c + services/svc_wins.c''', + deps='samba-util') bld.SAMBA3_SUBSYSTEM('PLAINTEXT_AUTH', source=PLAINTEXT_AUTH_SRC, |