From 0076e33d363877679c19923ca1c0dbdc9aa5192c Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Sun, 21 May 2006 21:54:48 +0200 Subject: [PATCH] Makefile.in: find needs a slash when the source dir is a symlink. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 2bcd50d0081..c1348e6e967 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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) $@