From: Yinghai Lu Date: Wed, 17 Oct 2007 23:43:39 +0000 (-0700) Subject: kbuild: cscope - filter out .tmp_* in find_sources X-Git-Tag: v2.6.24-rc1~134^2~8 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37ab7a269637086d56940c31968f3fb3389b6d68;p=linux-2.6 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 feca34c261..e8ace82e33 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