public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Let target 'cscope' follow symbolic links
@ 2011-07-14 11:56 Horst Kronstorfer
  2011-07-15  7:33 ` Detlev Zundel
  2011-07-15  9:24 ` [U-Boot] [PATCH v2] Let source cross-reference targets " hkronsto at frequentis.com
  0 siblings, 2 replies; 8+ messages in thread
From: Horst Kronstorfer @ 2011-07-14 11:56 UTC (permalink / raw)
  To: u-boot

Without telling 'find' to follow symbolic links, files under include/asm
and arch/$(ARCH)/include/asm/arch are not added to the cscope file list.

Signed-off-by: Horst Kronstorfer <hkronsto@frequentis.com>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index e56fa02..deff642 100644
--- a/Makefile
+++ b/Makefile
@@ -479,7 +479,7 @@ etags:
 		etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \
 						-name '*.[chS]' -print`
 cscope:
-		find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files
+		find -L $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files
 		cscope -b -q -k
 
 SYSTEM_MAP = \
-- 
1.7.6

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-07-28 14:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-14 11:56 [U-Boot] [PATCH] Let target 'cscope' follow symbolic links Horst Kronstorfer
2011-07-15  7:33 ` Detlev Zundel
2011-07-15  8:11   ` KRONSTORFER Horst
2011-07-15  9:24 ` [U-Boot] [PATCH v2] Let source cross-reference targets " hkronsto at frequentis.com
2011-07-15 15:19   ` Detlev Zundel
2011-07-18 11:21   ` [U-Boot] [PATCH v3] " hkronsto at frequentis.com
2011-07-19 16:32     ` Detlev Zundel
2011-07-28 14:30     ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox