summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-23 09:44:25 +0200
committerMichael Adam <obnox@samba.org>2013-09-23 20:25:31 +0200
commit4705f2ed801c9e758005a6524da6da5b77205931 (patch)
tree1e6bc3c7374c4d122faaa8833cfef5b737144729 /source3/wscript_build
parent8038f39f1c3a354ec181332d951fefb4cad8f157 (diff)
downloadsamba-4705f2ed801c9e758005a6524da6da5b77205931.tar.gz
samba-4705f2ed801c9e758005a6524da6da5b77205931.tar.bz2
samba-4705f2ed801c9e758005a6524da6da5b77205931.zip
build: list sources of subsys LIBNET_SAMSYNC directly in dev, remove 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_build15
1 files changed, 6 insertions, 9 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index 1bff74dbc8..795361ab89 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -3,12 +3,6 @@
from samba_utils import *
import samba_version, samba3
-LIBNET_SAMSYNC_SRC = '''libnet/libnet_samsync.c
- libnet/libnet_samsync_ldif.c
- libnet/libnet_samsync_passdb.c
- libnet/libnet_samsync_display.c
- libnet/libnet_samsync_keytab.c'''
-
NET_SRC1 = '''utils/net.c utils/net_ads.c utils/net_help.c
utils/net_rap.c utils/net_rpc.c utils/net_rpc_samsync.c
utils/net_time.c utils/net_lookup.c
@@ -805,9 +799,12 @@ bld.SAMBA3_SUBSYSTEM('LIBNET_DSSYNC',
deps='LIBNET RPC_NDR_DRSUAPI')
bld.SAMBA3_SUBSYSTEM('LIBNET_SAMSYNC',
- source=LIBNET_SAMSYNC_SRC,
- deps='LIBNET LIBCLI_SAMSYNC',
- vars=locals())
+ source='''libnet/libnet_samsync.c
+ libnet/libnet_samsync_ldif.c
+ libnet/libnet_samsync_passdb.c
+ libnet/libnet_samsync_display.c
+ libnet/libnet_samsync_keytab.c''',
+ deps='LIBNET LIBCLI_SAMSYNC')
bld.SAMBA3_SUBSYSTEM('LIBEVENTLOG',
source='lib/eventlog/eventlog.c',