diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 07:55:52 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:22:43 +0200 |
commit | aac089708dfc0abda4d7e6b7dfed0bd73b268a79 (patch) | |
tree | 7c754308289b689057d24634f2e0726660ed4e2b | |
parent | 18cca297ac6a3a68dda81fb29d34054a6cc4cd76 (diff) | |
download | samba-aac089708dfc0abda4d7e6b7dfed0bd73b268a79.tar.gz samba-aac089708dfc0abda4d7e6b7dfed0bd73b268a79.tar.bz2 samba-aac089708dfc0abda4d7e6b7dfed0bd73b268a79.zip |
build: list source of subsystem PARAM_UTIL directly in definition and remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rwxr-xr-x | source3/wscript_build | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 77a42aaff2..f2f4b83e5a 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -PARAM_UTIL_SRC = '''param/util.c''' - PARAM_WITHOUT_REG_SRC = '''param/loadparm.c lib/sharesec.c lib/ldap_debug_handler.c lib/util_names.c''' @@ -555,8 +553,8 @@ bld.SAMBA3_SUBSYSTEM('SERVER_MUTEX', deps='talloc') bld.SAMBA3_SUBSYSTEM('PARAM_UTIL', - source=PARAM_UTIL_SRC, - deps='talloc') + source='param/util.c', + deps='talloc') bld.SAMBA3_SUBSYSTEM('LOADPARM_CTX', source='param/loadparm_ctx.c', |