"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.
This commit is contained in:
Victor Stinner 2016-08-17 13:51:52 +02:00
parent 798d7fbad4
commit 9c4bfa6669

View 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