]> xenbits.xensource.com Git - people/pauldu/mini-os.git/commitdiff
mini-os: make cscope repair
authorJuergen Gross <jgross@suse.com>
Fri, 1 Jul 2016 09:33:11 +0000 (11:33 +0200)
committerWei Liu <wei.liu2@citrix.com>
Tue, 12 Jul 2016 11:13:13 +0000 (12:13 +0100)
"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>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Makefile

index 10c05a576ff51362561b807e6a91adc9368e6c98..2e4bdba3023dd33e32b6d37b0741e51904ece706 100644 (file)
--- 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