Skip to content

Commit

Permalink
kbuild: cscope - filter out .tmp_* in find_sources
Browse files Browse the repository at this point in the history
remove .tmp_kallsyms*.S in cscope.files

Signed-off-by: Yinghai Lu <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
  • Loading branch information
Yinghai Lu authored and Sam Ravnborg committed Oct 18, 2007
1 parent 347d12d commit 37ab7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 37ab7a2

Please sign in to comment.