diff options
-rw-r--r-- | source3/wscript | 9 |
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) - |