diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:09:47 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:14 +0200 |
commit | d68fe337dc10c626c5ab48d6b2cdcf2aff9d06fa (patch) | |
tree | 04cbe131a6c03e191039569b37caeac9330c10f5 /source3 | |
parent | 78fcf1484bcaf98dbeb58f8b82bc59843b0ede20 (diff) | |
download | samba-d68fe337dc10c626c5ab48d6b2cdcf2aff9d06fa.tar.gz samba-d68fe337dc10c626c5ab48d6b2cdcf2aff9d06fa.tar.bz2 samba-d68fe337dc10c626c5ab48d6b2cdcf2aff9d06fa.zip |
build: list sources of subsys SLCACHE directly in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-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 3fb2d1553c..b0576d56db 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -SLCACHE_SRC = '''libsmb/samlogon_cache.c''' - DCUTIL_SRC = '''libsmb/namequery_dc.c libsmb/trustdom_cache.c libsmb/dsgetdcname.c''' SMBD_SRC_MAIN = '''smbd/server.c''' @@ -910,9 +908,8 @@ bld.SAMBA3_SUBSYSTEM('SAMBA_VERSION', deps='samba-util') bld.SAMBA3_SUBSYSTEM('SLCACHE', - source=SLCACHE_SRC, - deps='samba-util tdb_compat', - vars=locals()) + source='libsmb/samlogon_cache.c', + deps='samba-util tdb_compat') bld.SAMBA3_SUBSYSTEM('DCUTIL', source=DCUTIL_SRC, |