diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:30:14 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:14 +0200 |
commit | 6ffbcfbbb66f659bfe7a05813d459a30523c9ae2 (patch) | |
tree | 26051131cf78e6ab0a1d2898d3e6aa14a42228ab | |
parent | 43bd918446323f940f82b8b627730433657f367b (diff) | |
download | samba-6ffbcfbbb66f659bfe7a05813d459a30523c9ae2.tar.gz samba-6ffbcfbbb66f659bfe7a05813d459a30523c9ae2.tar.bz2 samba-6ffbcfbbb66f659bfe7a05813d459a30523c9ae2.zip |
build: list sources of subsys TLDAP directly in definition
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, 3 insertions, 3 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 57660ae4e7..282e7fb260 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -TLDAP_SRC = '''lib/tldap.c lib/tldap_util.c lib/util_tsock.c''' - LIBSMB_SRC = '''libsmb/clientgen.c libsmb/cliconnect.c libsmb/clifile.c libsmb/clispnego.c libsmb/clirap.c libsmb/clierror.c libsmb/climessage.c @@ -463,7 +461,9 @@ bld.SAMBA3_SUBSYSTEM('GROUPDB', deps='tdb_compat') bld.SAMBA3_SUBSYSTEM('TLDAP', - source=TLDAP_SRC, + source='''lib/tldap.c + lib/tldap_util.c + lib/util_tsock.c''', deps='asn1util LIBTSOCKET') # libpdb.so should not expose internal symbols that are only usable |