diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:41:53 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:34 +0200 |
commit | c54cde2989e6370abe4113f346583c7760191f53 (patch) | |
tree | 4e4647ea2d20e1ce2fb3d183a0d8878df6bd3706 | |
parent | 2ddcd7833aeb4330cc7c18b1ae1e0845ddc6620e (diff) | |
download | samba-c54cde2989e6370abe4113f346583c7760191f53.tar.gz samba-c54cde2989e6370abe4113f346583c7760191f53.tar.bz2 samba-c54cde2989e6370abe4113f346583c7760191f53.zip |
build: list sources of REG_API_REGF 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 | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 26ad3ee253..2e89cdcd82 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,12 +3,6 @@ from samba_utils import * import samba_version, samba3 -# -# registry-related objects -# - -REG_API_REGF_SRC = '''registry/reg_api_regf.c''' - SERVICES_SRC = '''services/svc_spoolss.c services/svc_rcinit.c services/svc_winreg_glue.c @@ -506,9 +500,8 @@ bld.SAMBA3_SUBSYSTEM('REGFIO', deps='samba-util REG_PARSE_PRS') bld.SAMBA3_SUBSYSTEM('REG_API_REGF', - source=REG_API_REGF_SRC, - deps='samba-util', - vars=locals()) + source='registry/reg_api_regf.c', + deps='samba-util') bld.SAMBA3_LIBRARY('smbregistry', source='''registry/reg_api.c |