From: Juergen Gross <jgross@suse.com>
To: minios-devel@lists.xenproject.org, xen-devel@lists.xenproject.org
Cc: Juergen Gross <jgross@suse.com>, samuel.thibault@ens-lyon.org
Subject: [PATCH] mini-os: make cscope repair
Date: Fri, 1 Jul 2016 11:33:11 +0200 [thread overview]
Message-ID: <1467365591-22445-1-git-send-email-jgross@suse.com> (raw)
"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
next reply other threads:[~2016-07-01 9:33 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-01 9:33 Juergen Gross [this message]
2016-07-03 18:31 ` [PATCH] mini-os: make cscope repair Samuel Thibault
2016-07-12 7:59 ` [Minios-devel] " Wei Liu
2016-07-12 8:03 ` Juergen Gross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1467365591-22445-1-git-send-email-jgross@suse.com \
--to=jgross@suse.com \
--cc=minios-devel@lists.xenproject.org \
--cc=samuel.thibault@ens-lyon.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).