summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-23 09:32:58 +0200
committerMichael Adam <obnox@samba.org>2013-09-23 20:25:03 +0200
commit06ef203b2118b8b5fb77277ebcbed51ab6b61be0 (patch)
tree6872499491eb6ba9542f8af8d7d4aa76c3b3552f /source3/wscript_build
parentd346b1a8f5570400b6cae674bfb134cdb892740e (diff)
downloadsamba-06ef203b2118b8b5fb77277ebcbed51ab6b61be0.tar.gz
samba-06ef203b2118b8b5fb77277ebcbed51ab6b61be0.tar.bz2
samba-06ef203b2118b8b5fb77277ebcbed51ab6b61be0.zip
build: list source of binary pdbedit directly in def, 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 44e411008f..87c92b1c25 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -3,8 +3,6 @@
from samba_utils import *
import samba_version, samba3
-PDBEDIT_SRC = '''utils/pdbedit.c'''
-
SMBGET_SRC = '''utils/smbget.c'''
RPCCLIENT_SRC1 = '''rpcclient/rpcclient.c rpcclient/cmd_lsarpc.c
@@ -1275,14 +1273,13 @@ bld.SAMBA3_BINARY('smbpasswd',
PASSCHANGE''')
bld.SAMBA3_BINARY('pdbedit',
- source=PDBEDIT_SRC,
+ source='utils/pdbedit.c',
deps='''
talloc
param
popt_samba3
pdb
- PASSWD_UTIL''',
- vars=locals())
+ PASSWD_UTIL''')
bld.SAMBA3_BINARY('smbget',
source=SMBGET_SRC,