summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-23 08:28:14 +0200
committerMichael Adam <obnox@samba.org>2013-09-23 20:23:11 +0200
commit43bd918446323f940f82b8b627730433657f367b (patch)
treee5558cd72c6b5476947cd272ff9498d9634a0804 /source3/wscript_build
parent2f055074e6b1819b76c0bbffa6f145a5adaf1260 (diff)
downloadsamba-43bd918446323f940f82b8b627730433657f367b.tar.gz
samba-43bd918446323f940f82b8b627730433657f367b.tar.bz2
samba-43bd918446323f940f82b8b627730433657f367b.zip
build: list sources of subsys LIBNTLMSSP in definition, removing vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-xsource3/wscript_build10
1 files changed, 3 insertions, 7 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index 4fa1afb326..57660ae4e7 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -3,10 +3,6 @@
from samba_utils import *
import samba_version, samba3
-LIBNTLMSSP_SRC = '''
- libsmb/ntlmssp.c
- libsmb/ntlmssp_wrap.c'''
-
TLDAP_SRC = '''lib/tldap.c lib/tldap_util.c lib/util_tsock.c'''
LIBSMB_SRC = '''libsmb/clientgen.c libsmb/cliconnect.c libsmb/clifile.c
@@ -682,9 +678,9 @@ bld.SAMBA3_LIBRARY('smbd_shim',
private_library=True)
bld.SAMBA3_SUBSYSTEM('LIBNTLMSSP',
- source=LIBNTLMSSP_SRC,
- deps='NDR_NTLMSSP NTLMSSP_COMMON wbclient',
- vars=locals())
+ source='''libsmb/ntlmssp.c
+ libsmb/ntlmssp_wrap.c''',
+ deps='NDR_NTLMSSP NTLMSSP_COMMON wbclient')
bld.SAMBA3_SUBSYSTEM('auth_generic',
source='libsmb/auth_generic.c',