From: Victor Stinner Date: Wed, 17 Aug 2016 11:51:52 +0000 (+0200) Subject: "make tags": remove -t option of ctags X-Git-Tag: v3.6.0b1~688 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c4bfa6669e220efdd379b9f8e7db32bb4e25e72;p=thirdparty%2FPython%2Fcpython.git "make tags": remove -t option of ctags The option was kept for backward compatibility, but it was completly removed recently. Patch written by Stéphane Wirtel. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 643424c61e50..2101e70f351a 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