diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 07:39:57 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:22:13 +0200 |
commit | 2d4cc8e14169c2580ae1103d6d06ce1d0afa9602 (patch) | |
tree | 0ced6e2179cc02993aa6fd05b671264574495f17 /source3/wscript_build | |
parent | 334563467753302d11a3140bb6a946e08b739838 (diff) | |
download | samba-2d4cc8e14169c2580ae1103d6d06ce1d0afa9602.tar.gz samba-2d4cc8e14169c2580ae1103d6d06ce1d0afa9602.tar.xz samba-2d4cc8e14169c2580ae1103d6d06ce1d0afa9602.zip |
build: list source of subsystem SERVER_MUTEX directly in its definition
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-x | source3/wscript_build | 6 |
1 files 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, |