diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:58:56 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:01 +0200 |
commit | f14c3df89a51f759ea4e874c9f0efd145788df11 (patch) | |
tree | 86057eb27166a9221147d6e7c7a1bb65d7f01b0e /source3 | |
parent | 0cbc839072bf9d148473850ee462817516212e53 (diff) | |
download | samba-f14c3df89a51f759ea4e874c9f0efd145788df11.tar.gz samba-f14c3df89a51f759ea4e874c9f0efd145788df11.tar.bz2 samba-f14c3df89a51f759ea4e874c9f0efd145788df11.zip |
build: list sources of binary profiles directly in def, remov vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-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 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, |