Commit 409b135a authored by Alexandre Julliard's avatar Alexandre Julliard

Makefile: Avoid trailing slash in find, it breaks tags on MacOS.

parent e57118b2
......@@ -131,10 +131,10 @@ $(TESTSUBDIRS:%=%/__crosstest__): tools include
# Misc rules
TAGS etags:
find $(TOPSRCDIR)/ -name '*.[ch]' -print | etags -
find -L $(TOPSRCDIR) -name '*.[ch]' -print | etags -
tags ctags:
find $(TOPSRCDIR)/ -name '*.[ch]' -print | ctags --c-types=+px -L -
find -L $(TOPSRCDIR) -name '*.[ch]' -print | ctags --c-types=+px -L -
manpages htmlpages sgmlpages: dummy
@cd documentation && $(MAKE) $@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment