aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYinghai Lu <Yinghai.Lu@Sun.COM>2007-10-17 16:43:39 -0700
committerSam Ravnborg <sam@neptun.(none)>2007-10-18 13:35:49 +0200
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 feca34c2614..e8ace82e334 100644
--- a/Makefile
+++ b/Makefile
@@ -1351,7 +1351,7 @@ define find-sources
find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \
-name $1 -print; \
find $(__srctree) $(RCS_FIND_IGNORE) \
- \( -name include -o -name arch \) -prune -o \
+ \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \
-name $1 -print; \
)
endef