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

Alexandre Julliard julliard at wine.codeweavers.com
Wed May 24 07:49:07 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 0076e33d363877679c19923ca1c0dbdc9aa5192c
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=0076e33d363877679c19923ca1c0dbdc9aa5192c

Author: Detlef Riekenberg <wine.dev at 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) $@




More information about the wine-cvs mailing list