Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de2addf5 authored by Ian Campbell's avatar Ian Campbell Committed by Sam Ravnborg
Browse files

kbuild: do not include arch/<ARCH>/include/asm in find-sources twice.



Architectures which have moved their includes to arch/<ARCH>/include
now list the headers twice in the source listing used by "make
cscope" and friends, causing those tools to list symbols twice.

Skipping these files in the ALLSOURCE_ARCHS pass rather than removing
the ALLINCLUDE_ARCHS pass preserves the semantics of the later.

Signed-off-by: default avatarIan Campbell <ijc@hellion.org.uk>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent f03b283f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1436,7 +1436,8 @@ ALLSOURCE_ARCHS := $(SRCARCH)
define find-sources
        ( for arch in $(ALLSOURCE_ARCHS) ; do \
	       find $(__srctree)arch/$${arch} $(RCS_FIND_IGNORE) \
	            -name $1 -print; \
		    -wholename $(__srctree)arch/$${arch}/include/asm -type d -prune \
	            -o -name $1 -print; \
	  done ; \
	  find $(__srctree)security/selinux/include $(RCS_FIND_IGNORE) \
	       -name $1 -print; \