[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] mini-os: make cscope repair
"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@xxxxxxxx> --- 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@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |