aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ed65de7078c7..529b9048d97e 100644
--- a/Makefile
+++ b/Makefile
@@ -1325,8 +1325,8 @@ ALLSOURCE_ARCHS := $(ARCH) $(SRCARCH)
1325endif 1325endif
1326 1326
1327define find-sources 1327define find-sources
1328 ( for ARCH in $(ALLSOURCE_ARCHS) ; do \ 1328 ( for arch in $(ALLSOURCE_ARCHS) ; do \
1329 find $(__srctree)arch/$${SRCARCH} $(RCS_FIND_IGNORE) \ 1329 find $(__srctree)arch/$${arch} $(RCS_FIND_IGNORE) \
1330 -name $1 -print; \ 1330 -name $1 -print; \
1331 done ; \ 1331 done ; \
1332 find $(__srctree)security/selinux/include $(RCS_FIND_IGNORE) \ 1332 find $(__srctree)security/selinux/include $(RCS_FIND_IGNORE) \
@@ -1334,8 +1334,8 @@ define find-sources
1334 find $(__srctree)include $(RCS_FIND_IGNORE) \ 1334 find $(__srctree)include $(RCS_FIND_IGNORE) \
1335 \( -name config -o -name 'asm-*' \) -prune \ 1335 \( -name config -o -name 'asm-*' \) -prune \
1336 -o -name $1 -print; \ 1336 -o -name $1 -print; \
1337 for ARCH in $(ALLINCLUDE_ARCHS) ; do \ 1337 for arch in $(ALLINCLUDE_ARCHS) ; do \
1338 find $(__srctree)include/asm-$${SRCARCH} $(RCS_FIND_IGNORE) \ 1338 find $(__srctree)include/asm-$${arch} $(RCS_FIND_IGNORE) \
1339 -name $1 -print; \ 1339 -name $1 -print; \
1340 done ; \ 1340 done ; \
1341 find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \ 1341 find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \