From f14c3df89a51f759ea4e874c9f0efd145788df11 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 08:58:56 +0200 Subject: build: list sources of binary profiles directly in def, remov vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/wscript_build b/source3/wscript_build index 8add31a8a2..ed5e837214 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -PROFILES_SRC = '''utils/profiles.c''' - OPLOCK_SRC = '''smbd/oplock.c smbd/oplock_irix.c smbd/oplock_linux.c''' NOTIFY_SRC = '''smbd/notify.c smbd/notify_inotify.c smbd/notify_internal.c''' @@ -1211,13 +1209,12 @@ bld.SAMBA3_BINARY('net', vars=locals()) bld.SAMBA3_BINARY('profiles', - source=PROFILES_SRC, + source='utils/profiles.c', deps=''' talloc popt_samba3 param - REGFIO''', - vars=locals()) + REGFIO''') bld.SAMBA3_BINARY('smbspool', source=CUPS_SRC, -- cgit