Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a897aee commit 3be3b97Copy full SHA for 3be3b97
1 file changed
Makefile.pre.in
@@ -1605,10 +1605,9 @@ autoconf:
1605
1606
# Create a tags file for vi
1607
tags::
1608
- cd $(srcdir); \
1609
- ctags -w Include/*.h Include/internal/*.h; \
1610
- for i in $(SRCDIRS); do ctags -f tags -w -a $$i/*.[ch]; \
1611
- done; \
+ ctags -w $(srcdir)/Include/*.h $(srcdir)/Include/internal/*.h
+ for i in $(SRCDIRS); do ctags -f tags -w -a $(srcdir)/$$i/*.[ch]; done
+ ctags -f tags -w -a $(srcdir)/Modules/_ctypes/*.[ch]
1612
LC_ALL=C sort -o tags tags
1613
1614
# Create a tags file for GNU Emacs
0 commit comments