Commit 0076e33d authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

Makefile.in: find needs a slash when the source dir is a symlink.

parent 65d43a67
......@@ -120,10 +120,10 @@ $(TESTSUBDIRS:%=%/__crosstest__): tools include
# Misc rules
TAGS etags:
find $(TOPSRCDIR) -name '*.[ch]' -print | etags -
find $(TOPSRCDIR)/ -name '*.[ch]' -print | etags -
tags ctags:
find $(TOPSRCDIR) -name '*.[ch]' -print | ctags --c-types=+px -L -
find $(TOPSRCDIR)/ -name '*.[ch]' -print | ctags --c-types=+px -L -
manpages htmlpages sgmlpages:
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