diff options
author | Gregor Beck <gbeck@sernet.de> | 2012-06-07 13:34:35 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-27 08:18:18 +0200 |
commit | c4be17f804a857630b4c5f9d0aad70b508e56e2e (patch) | |
tree | f38c31bd2de4bd292d35c6998bdcbc6c613eb525 /source3/wscript_build | |
parent | 088e505e84c18709a30301aa410792f5a434c27d (diff) | |
download | samba-c4be17f804a857630b4c5f9d0aad70b508e56e2e.tar.gz samba-c4be17f804a857630b4c5f9d0aad70b508e56e2e.tar.bz2 samba-c4be17f804a857630b4c5f9d0aad70b508e56e2e.zip |
s3: add a tool "cclean" to cleanup orphaned entries from connections.tdb
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-x | source3/wscript_build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 3be9ed5214..b8c186593b 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -420,6 +420,8 @@ SWAT_SRC = '''${SWAT_SRC1}''' STATUS_SRC = '''utils/status.c utils/status_profile.c smbd/notify_internal.c''' +CCLEAN_SRC = '''utils/cclean.c utils/interact.c''' + SMBCONTROL_SRC = '''utils/smbcontrol.c''' SMBTREE_SRC = '''utils/smbtree.c''' @@ -1320,6 +1322,16 @@ bld.SAMBA3_BINARY('smbstatus', PROFILE''', vars=locals()) +bld.SAMBA3_BINARY('cclean', + source=CCLEAN_SRC, + deps=''' + talloc + param + popt_samba3 + LOCKING + PROFILE''', + vars=locals()) + bld.SAMBA3_BINARY('smbcontrol', source=SMBCONTROL_SRC, deps=''' |