From: Yinghai Lu Date: Wed, 17 Oct 2007 23:43:39 +0000 (-0700) Subject: kbuild: cscope - filter out .tmp_* in find_sources X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=37ab7a269637086d56940c31968f3fb3389b6d68;p=linux-beck.git kbuild: cscope - filter out .tmp_* in find_sources remove .tmp_kallsyms*.S in cscope.files Signed-off-by: Yinghai Lu Signed-off-by: Sam Ravnborg --- diff --git a/Makefile b/Makefile index feca34c26145..e8ace82e334f 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