Makefile: Avoid trailing slash in find, it breaks tags on MacOS.
This commit is contained in:
parent
e57118b2fd
commit
409b135a02
|
@ -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) $@
|
||||
|
|
Loading…
Reference in New Issue