Skip to content
Snippets Groups Projects
Commit 35645ca4 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard
Browse files

Avoid argument list limit in etags generation.

parent dfccba71
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,7 @@ crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
# Misc rules
TAGS etags:
etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.dbg.c' -print`
find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.dbg.c' -print | etags -
tags ctags:
ctags --c-types=+px `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.dbg.c' -print`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment