From 9c4bfa6669e220efdd379b9f8e7db32bb4e25e72 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 17 Aug 2016 13:51:52 +0200 Subject: "make tags": remove -t option of ctags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The option was kept for backward compatibility, but it was completly removed recently. Patch written by Stéphane Wirtel. --- Makefile.pre.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 643424c..2101e70 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1563,8 +1563,8 @@ autoconf: # Create a tags file for vi tags:: cd $(srcdir); \ - ctags -w -t Include/*.h; \ - for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \ + ctags -w Include/*.h; \ + for i in $(SRCDIRS); do ctags -w -a $$i/*.[ch]; \ done; \ sort -o tags tags -- cgit v0.12