From 40f19d60db8dd2d2d86a9713bd0274b7f33866e4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 08:00:16 +0200 Subject: build: list sources of library gpo directly in definition, removing vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source3/wscript_build b/source3/wscript_build index 3a1abb93e5..85bfd5e248 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,11 +3,6 @@ from samba_utils import * import samba_version, samba3 -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''' -LIBGPO_SRC = '''${LIBGPO_SRC0}''' - LIBADS_SRC = '''libads/ldap.c libads/sasl.c libads/sasl_wrapping.c libads/krb5_setpw.c @@ -473,9 +468,14 @@ bld.SAMBA3_LIBRARY('msrpc3', private_library=True) bld.SAMBA3_LIBRARY('gpo', - source='${LIBGPO_SRC}', + source='''../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''', deps='talloc ads TOKEN_UTIL gpext auth', - vars=locals(), private_library=True) bld.SAMBA3_SUBSYSTEM('AVAHI', -- cgit