diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 07:58:32 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:22:49 +0200 |
commit | 178024154ce290591451e120ad791961542abe41 (patch) | |
tree | 604daf5fa08c0dff28b020e141a43b2dfbf340c4 /source3/wscript_build | |
parent | 9572a14c6196a51e36a3a808f34c025139b436fc (diff) | |
download | samba-178024154ce290591451e120ad791961542abe41.tar.gz samba-178024154ce290591451e120ad791961542abe41.tar.xz samba-178024154ce290591451e120ad791961542abe41.zip |
build: list source of subsystem KRBCLIENT directly in defintion, removing vars=locals()
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 | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index a0facaf485..3a1abb93e5 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -KRBCLIENT_SRC = '''libads/kerberos.c libads/ads_status.c''' - LIBGPO_SRC0 = '''../libgpo/gpo_ldap.c ../libgpo/gpo_ini.c ../libgpo/gpo_util.c ../libgpo/gpo_fetch.c libgpo/gpo_filesync.c ../libgpo/gpo_sec.c libgpo/gpo_reg.c''' @@ -623,9 +621,8 @@ bld.SAMBA3_LIBRARY('util_cmdline', private_library=True) bld.SAMBA3_SUBSYSTEM('KRBCLIENT', - source=KRBCLIENT_SRC, - public_deps='krb5samba k5crypto gssapi LIBTSOCKET CLDAP LIBNMB', - vars=locals()) + source='libads/kerberos.c libads/ads_status.c', + public_deps='krb5samba k5crypto gssapi LIBTSOCKET CLDAP LIBNMB') bld.SAMBA3_SUBSYSTEM('samba3util', source='''lib/system.c |