diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 11:51:52 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-17 11:51:52 (GMT) |
commit | 9c4bfa6669e220efdd379b9f8e7db32bb4e25e72 (patch) | |
tree | 46a63b149777936f3506fdc972acc9fe281a8314 /Makefile.pre.in | |
parent | 798d7fbad45a6e2e2d8f58de27665a4a8e63ecae (diff) | |
download | cpython-9c4bfa6669e220efdd379b9f8e7db32bb4e25e72.zip cpython-9c4bfa6669e220efdd379b9f8e7db32bb4e25e72.tar.gz cpython-9c4bfa6669e220efdd379b9f8e7db32bb4e25e72.tar.bz2 |
"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.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files 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 |