aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c5ab2b8a138a..ad0533b9a0d4 100644
--- a/Makefile
+++ b/Makefile
@@ -1416,7 +1416,11 @@ define find-sources
1416 \( -name config -o -name 'asm-*' \) -prune \ 1416 \( -name config -o -name 'asm-*' \) -prune \
1417 -o -name $1 -print; \ 1417 -o -name $1 -print; \
1418 for arch in $(ALLINCLUDE_ARCHS) ; do \ 1418 for arch in $(ALLINCLUDE_ARCHS) ; do \
1419 find $(__srctree)include/asm-$${arch} $(RCS_FIND_IGNORE) \ 1419 test -e $(__srctree)include/asm-$${arch} && \
1420 find $(__srctree)include/asm-$${arch} $(RCS_FIND_IGNORE) \
1421 -name $1 -print; \
1422 test -e $(__srctree)arch/$${arch}/include/asm && \
1423 find $(__srctree)arch/$${arch}/include/asm $(RCS_FIND_IGNORE) \
1420 -name $1 -print; \ 1424 -name $1 -print; \
1421 done ; \ 1425 done ; \
1422 find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \ 1426 find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \