]> granicus.if.org Git - python/commitdiff
"make tags": remove -t option of ctags
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 17 Aug 2016 11:51:52 +0000 (13:51 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 17 Aug 2016 11:51:52 +0000 (13:51 +0200)
The option was kept for backward compatibility, but it was completly removed
recently. Patch written by Stéphane Wirtel.

Makefile.pre.in

index 643424c61e50d08a4eb7b34c93e151b143084cb0..2101e70f351aeb505a67f70884a280138eca1510 100644 (file)
@@ -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