Commit 37ab7a26 authored by Yinghai Lu's avatar Yinghai Lu Committed by Sam Ravnborg

kbuild: cscope - filter out .tmp_* in find_sources

remove .tmp_kallsyms*.S in cscope.files
Signed-off-by: default avatarYinghai Lu <yinghai.lu@sun.com>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 347d12d7
...@@ -1351,7 +1351,7 @@ define find-sources ...@@ -1351,7 +1351,7 @@ define find-sources
find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \ find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \
-name $1 -print; \ -name $1 -print; \
find $(__srctree) $(RCS_FIND_IGNORE) \ 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; \ -name $1 -print; \
) )
endef endef
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment