diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:44:17 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:40 +0200 |
commit | dc89feefd33b9bed5c47da5d2698d9878808b8bf (patch) | |
tree | ed7c01f0fe181eb094df8d868a88066aadfe510a | |
parent | 85b18b37905909a881c72cd54828c7eb8b4cfb46 (diff) | |
download | samba-dc89feefd33b9bed5c47da5d2698d9878808b8bf.tar.gz samba-dc89feefd33b9bed5c47da5d2698d9878808b8bf.tar.bz2 samba-dc89feefd33b9bed5c47da5d2698d9878808b8bf.zip |
build: list source of subsys LIBEVENTLOG directly in definition, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-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 89d4bb9114..d3b69a98f9 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -LIB_EVENTLOG_SRC = '''lib/eventlog/eventlog.c''' - RPC_CLIENT_SCHANNEL_SRC = '''rpc_client/cli_pipe_schannel.c''' LOCKING_SRC = '''locking/locking.c locking/brlock.c locking/posix.c locking/share_mode_lock.c''' @@ -861,9 +859,8 @@ bld.SAMBA3_SUBSYSTEM('LIBNET_SAMSYNC', vars=locals()) bld.SAMBA3_SUBSYSTEM('LIBEVENTLOG', - source=LIB_EVENTLOG_SRC, - deps='NDR_EVENTLOG tdb_compat', - vars=locals()) + source='lib/eventlog/eventlog.c', + deps='NDR_EVENTLOG tdb_compat') bld.SAMBA3_SUBSYSTEM('LIBNMB', source='''libsmb/unexpected.c |