From 2d4cc8e14169c2580ae1103d6d06ce1d0afa9602 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 07:39:57 +0200 Subject: build: list source of subsystem SERVER_MUTEX directly in its definition Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source3/wscript_build b/source3/wscript_build index 9276eb312b..31ad867ba4 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -SERVER_MUTEX_SRC = 'lib/server_mutex.c' - PASSCHANGE_SRC = '''libsmb/passchange.c''' LIBCLI_SPOOLSS_SRC = '''rpc_client/cli_spoolss.c @@ -584,8 +582,8 @@ bld.SAMBA3_LIBRARY('smbldaphelper', private_library=True) bld.SAMBA3_SUBSYSTEM('SERVER_MUTEX', - source=SERVER_MUTEX_SRC, - deps='talloc') + source='lib/server_mutex.c', + deps='talloc') bld.SAMBA3_SUBSYSTEM('PARAM_UTIL', source=PARAM_UTIL_SRC, -- cgit