xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mini-os: make cscope repair
@ 2016-07-01  9:33 Juergen Gross
  2016-07-03 18:31 ` Samuel Thibault
  2016-07-12  7:59 ` [Minios-devel] " Wei Liu
  0 siblings, 2 replies; 4+ messages in thread
From: Juergen Gross @ 2016-07-01  9:33 UTC (permalink / raw)
  To: minios-devel, xen-devel; +Cc: Juergen Gross, samuel.thibault

"make cscope" doesn't like symbolic link include/mini-os->. as it
leads to a file system recursion. Repair that by not following links
when searching the sources.

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 10c05a5..2e4bdba 100644
--- a/Makefile
+++ b/Makefile
@@ -212,7 +212,7 @@ clean:	arch_clean
 
 
 define all_sources
-     ( find . -follow -name SCCS -prune -o -name '*.[chS]' -print )
+     ( find . -name SCCS -prune -o -name '*.[chS]' -print )
 endef
 
 .PHONY: cscope
-- 
2.6.6


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

end of thread, other threads:[~2016-07-12  8:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-01  9:33 [PATCH] mini-os: make cscope repair Juergen Gross
2016-07-03 18:31 ` Samuel Thibault
2016-07-12  7:59 ` [Minios-devel] " Wei Liu
2016-07-12  8:03   ` Juergen Gross

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).