From c0b8ceb21eef58b37aeb5ab686db17a2fe2e356f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 09:18:48 +0200 Subject: build: list sources of binary smbstatus directly in def, remove vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'source3/wscript_build') diff --git a/source3/wscript_build b/source3/wscript_build index 64129eb1f7..c7733d406c 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -STATUS_SRC = '''utils/status.c utils/status_profile.c smbd/notify_internal.c''' - SMBCONTROL_SRC = '''utils/smbcontrol.c''' SMBTREE_SRC = '''utils/smbtree.c''' @@ -1254,15 +1252,16 @@ bld.SAMBA3_BINARY('smbta-util', vars=locals()) bld.SAMBA3_BINARY('smbstatus', - source=STATUS_SRC, + source='''utils/status.c + utils/status_profile.c + smbd/notify_internal.c''', deps=''' talloc param popt_samba3 smbd_base LOCKING - PROFILE''', - vars=locals()) + PROFILE''') bld.SAMBA3_BINARY('smbcontrol', source=SMBCONTROL_SRC, -- cgit