diff options
author | Yinghai Lu <Yinghai.Lu@Sun.COM> | 2007-10-17 16:43:39 -0700 |
---|---|---|
committer | Sam Ravnborg <sam@neptun.(none)> | 2007-10-18 13:35:49 +0200 |
commit | 37ab7a269637086d56940c31968f3fb3389b6d68 (patch) | |
tree | 1fbdbc8aa94e918d4da1ae2b2a905a34a2ba7443 | |
parent | 347d12d727d214f517921d579e1eded2dc082a10 (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>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |