diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:20:54 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:39 +0200 |
commit | 50ee465cc176cae4e4369f0ce1ed3ce666ceec6c (patch) | |
tree | 8f4596eb736273327cd343819b3ba9f3ff11e9ab | |
parent | d49b39e085176356283cfdb20cc63e20c18642a7 (diff) | |
download | samba-50ee465cc176cae4e4369f0ce1ed3ce666ceec6c.tar.gz samba-50ee465cc176cae4e4369f0ce1ed3ce666ceec6c.tar.bz2 samba-50ee465cc176cae4e4369f0ce1ed3ce666ceec6c.zip |
build: list sources of smbtree direclty in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-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 065b95bd75..3e25de87ad 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -SMBTREE_SRC = '''utils/smbtree.c''' - TESTPARM_SRC = 'utils/testparm.c' SMBTA_UTIL_SRC = '''utils/smbta-util.c''' @@ -1270,7 +1268,7 @@ bld.SAMBA3_BINARY('smbcontrol', PRINTBASE''') bld.SAMBA3_BINARY('smbtree', - source=SMBTREE_SRC, + source='utils/smbtree.c', deps=''' talloc param @@ -1278,8 +1276,7 @@ bld.SAMBA3_BINARY('smbtree', msrpc3 popt_samba3 PROFILE - RPC_NDR_SRVSVC''', - vars=locals()) + RPC_NDR_SRVSVC''') bld.SAMBA3_BINARY('smbpasswd', source=SMBPASSWD_SRC, |