[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [mini-os master] mini-os: make cscope repair
commit df5eff9b19f0d333717b02f0f0163ab7e8dc0597 Author: Juergen Gross <jgross@xxxxxxxx> AuthorDate: Fri Jul 1 11:33:11 2016 +0200 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Jul 12 12:13:13 2016 +0100 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> Acked-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> --- 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 -- generated by git-patchbot for /home/xen/git/mini-os.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |