diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:43:33 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:25:28 +0200 |
commit | 8038f39f1c3a354ec181332d951fefb4cad8f157 (patch) | |
tree | 1a9df4f62256ef982977d063d62b66aea8cafab4 | |
parent | 05c604002837bdd02d2ad5cf07745212468b1bf3 (diff) | |
download | samba-8038f39f1c3a354ec181332d951fefb4cad8f157.tar.gz samba-8038f39f1c3a354ec181332d951fefb4cad8f157.tar.bz2 samba-8038f39f1c3a354ec181332d951fefb4cad8f157.zip |
build: list source of subsys LIBNET_DSSYNC 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, 4 insertions, 7 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index b62e6dead1..1bff74dbc8 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,10 +3,6 @@ from samba_utils import * import samba_version, samba3 -LIBNET_DSSYNC_SRC = '''libnet/libnet_dssync.c - libnet/libnet_dssync_passdb.c - libnet/libnet_dssync_keytab.c''' - LIBNET_SAMSYNC_SRC = '''libnet/libnet_samsync.c libnet/libnet_samsync_ldif.c libnet/libnet_samsync_passdb.c @@ -803,9 +799,10 @@ bld.SAMBA3_LIBRARY('net_keytab', bld.SAMBA3_SUBSYSTEM('LIBNET_DSSYNC', - source=LIBNET_DSSYNC_SRC, - deps='LIBNET RPC_NDR_DRSUAPI', - vars=locals()) + source='''libnet/libnet_dssync.c + libnet/libnet_dssync_passdb.c + libnet/libnet_dssync_keytab.c''', + deps='LIBNET RPC_NDR_DRSUAPI') bld.SAMBA3_SUBSYSTEM('LIBNET_SAMSYNC', source=LIBNET_SAMSYNC_SRC, |