diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:03:56 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:02 +0200 |
commit | ce4063ee7c0345509479acafe70681a80900b1da (patch) | |
tree | 4a6b3e2154db72e13db359256863dbba048bebf7 | |
parent | 17e5cbb2b3dac60f8db7e9d4fae8c616dd3364ff (diff) | |
download | samba-ce4063ee7c0345509479acafe70681a80900b1da.tar.gz samba-ce4063ee7c0345509479acafe70681a80900b1da.tar.bz2 samba-ce4063ee7c0345509479acafe70681a80900b1da.zip |
build: list source of subsys LIBADS_PRINTER directly in def, removing 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 180fa9a087..26538cb4b9 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -LIBADS_PRINTER_SRC = '''libads/ldap_printer.c''' - SECRETS_SRC = '''passdb/secrets.c passdb/machine_account_secrets.c passdb/machine_sid.c passdb/secrets_lsa.c''' @@ -764,9 +762,8 @@ bld.SAMBA3_SUBSYSTEM('LIBADS_SERVER', deps='SERVER_MUTEX ndr-krb5pac krb5samba gssapi') bld.SAMBA3_SUBSYSTEM('LIBADS_PRINTER', - source=LIBADS_PRINTER_SRC, - deps='samba-util krb5samba', - vars=locals()) + source='libads/ldap_printer.c', + deps='samba-util krb5samba') bld.SAMBA3_SUBSYSTEM('LIBAFS_SETTOKEN', source='lib/afs_settoken.c', |