summaryrefslogtreecommitdiff
path: root/source3/wscript
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2017-01-23 16:45:53 +0100
committerGünther Deschner <gd@samba.org>2017-02-14 17:38:34 +0100
commitb1dc72df2305748ecd02085c0845377b17c5ead9 (patch)
treedc128b92548e1f3d083f86e195aca41fbb7e1ea0 /source3/wscript
parent03c4cf5b10dcd054f8500c5e8be0b5c9e5a09dee (diff)
downloadsamba-b1dc72df2305748ecd02085c0845377b17c5ead9.tar.gz
s3-waf: remove duplicate ctags definition
Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Günther Deschner <gd@samba.org> Autobuild-Date(master): Tue Feb 14 17:38:34 CET 2017 on sn-devel-144
Diffstat (limited to 'source3/wscript')
-rw-r--r--source3/wscript9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/wscript b/source3/wscript
index b886e1b69e4..07338e90271 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -1869,12 +1869,3 @@ main() {
Logs.info("%s: %s" % (shared_env, ','.join(conf.env[shared_env])))
conf.SAMBA_CONFIG_H('include/config.h')
-
-def ctags(ctx):
- "build 'tags' file using ctags"
- import Utils
- source_root = os.path.dirname(Utils.g_module.root_path)
- cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
- print("Running: %s" % cmd)
- os.system(cmd)
-