diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:23:47 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:54 +0200 |
commit | f2dbe1ce81624820a5e21cf0fc68fb23d55f9ce0 (patch) | |
tree | 7112722f4d81e68db65f889c84fd4f4c955f4272 /source3/wscript_build | |
parent | c15f2207b45b0549f9f2bca0073fbd84b747a9eb (diff) | |
download | samba-f2dbe1ce81624820a5e21cf0fc68fb23d55f9ce0.tar.gz samba-f2dbe1ce81624820a5e21cf0fc68fb23d55f9ce0.tar.bz2 samba-f2dbe1ce81624820a5e21cf0fc68fb23d55f9ce0.zip |
build: list sources of binary test_lp_load 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-x | source3/wscript_build | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 929d7ba6fc..3329f6a3cf 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,8 +3,6 @@ from samba_utils import * import samba_version, samba3 -TEST_LP_LOAD_SRC = '''param/test_lp_load.c''' - PASSWD_UTIL_SRC = 'utils/passwd_util.c' SMBPASSWD_SRC = '''utils/smbpasswd.c''' @@ -1467,13 +1465,12 @@ bld.SAMBA3_BINARY('rpc_open_tcp', vars=locals()) bld.SAMBA3_BINARY('test_lp_load', - source=TEST_LP_LOAD_SRC, + source='param/test_lp_load.c', deps=''' talloc param popt_samba3''', - install=False, - vars=locals()) + install=False) bld.SAMBA3_BINARY('dbwrap_tool', source=DBWRAP_TOOL_SRC, |