Module: wine Branch: master Commit: 409b135a0204e1d3f00e0194ca90cb58212a6c41 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=409b135a0204e1d3f00e0194... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Oct 3 15:06:43 2006 +0200 Makefile: Avoid trailing slash in find, it breaks tags on MacOS. --- Makefile.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 7a6d63b..5f3d768 100644 --- a/Makefile.in +++ b/Makefile.in @@ -131,10 +131,10 @@ # Test rules # 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) $@