From: Günther Deschner Date: Mon, 23 Jan 2017 15:45:53 +0000 (+0100) Subject: s3-waf: remove duplicate ctags definition X-Git-Tag: talloc-2.1.9~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1dc72df2305748ecd02085c0845377b17c5ead9;p=thirdparty%2Fsamba.git s3-waf: remove duplicate ctags definition Guenther Signed-off-by: Guenther Deschner Reviewed-by: Volker Lendecke Autobuild-User(master): Günther Deschner Autobuild-Date(master): Tue Feb 14 17:38:34 CET 2017 on sn-devel-144 --- 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) -