"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 <jgr...@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

Reply via email to