summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-23 09:19:31 +0200
committerMichael Adam <obnox@samba.org>2013-09-23 20:24:36 +0200
commitd49b39e085176356283cfdb20cc63e20c18642a7 (patch)
tree270634a8f5a7a9ea444e163642a9ff5b0d07d0c4 /source3/wscript_build
parentc0b8ceb21eef58b37aeb5ab686db17a2fe2e356f (diff)
downloadsamba-d49b39e085176356283cfdb20cc63e20c18642a7.tar.gz
samba-d49b39e085176356283cfdb20cc63e20c18642a7.tar.bz2
samba-d49b39e085176356283cfdb20cc63e20c18642a7.zip
build: list sources of binary smbcontrol directly in sources, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-xsource3/wscript_build7
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index c7733d406c..065b95bd75 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -3,8 +3,6 @@
from samba_utils import *
import samba_version, samba3
-SMBCONTROL_SRC = '''utils/smbcontrol.c'''
-
SMBTREE_SRC = '''utils/smbtree.c'''
TESTPARM_SRC = 'utils/testparm.c'
@@ -1264,13 +1262,12 @@ bld.SAMBA3_BINARY('smbstatus',
PROFILE''')
bld.SAMBA3_BINARY('smbcontrol',
- source=SMBCONTROL_SRC,
+ source='utils/smbcontrol.c',
deps='''
talloc
param
popt_samba3
- PRINTBASE''',
- vars=locals())
+ PRINTBASE''')
bld.SAMBA3_BINARY('smbtree',
source=SMBTREE_SRC,