aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYinghai Lu <Yinghai.Lu@Sun.COM>2007-10-17 19:43:39 -0400
committerSam Ravnborg <sam@neptun.(none)>2007-10-18 07:35:49 -0400
commit37ab7a269637086d56940c31968f3fb3389b6d68 (patch)
tree1fbdbc8aa94e918d4da1ae2b2a905a34a2ba7443 /Makefile
parent347d12d727d214f517921d579e1eded2dc082a10 (diff)
kbuild: cscope - filter out .tmp_* in find_sources
remove .tmp_kallsyms*.S in cscope.files Signed-off-by: Yinghai Lu <yinghai.lu@sun.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index feca34c26145..e8ace82e334f 100644
--- a/Makefile
+++ b/Makefile
@@ -1351,7 +1351,7 @@ define find-sources
1351 find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \ 1351 find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \
1352 -name $1 -print; \ 1352 -name $1 -print; \
1353 find $(__srctree) $(RCS_FIND_IGNORE) \ 1353 find $(__srctree) $(RCS_FIND_IGNORE) \
1354 \( -name include -o -name arch \) -prune -o \ 1354 \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \
1355 -name $1 -print; \ 1355 -name $1 -print; \
1356 ) 1356 )
1357endef 1357endef