Module: wine Branch: refs/heads/master Commit: 0076e33d363877679c19923ca1c0dbdc9aa5192c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=0076e33d363877679c19923c...
Author: Detlef Riekenberg wine.dev@web.de Date: Sun May 21 21:54:48 2006 +0200
Makefile.in: find needs a slash when the source dir is a symlink.
---
Makefile.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.in b/Makefile.in index 2bcd50d..c1348e6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -120,10 +120,10 @@ crosstest:: $(TESTSUBDIRS:%=%/__crosstes # 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) $@