1
0
Fork 0

kbuild: fix tags generation of config symbols

commit 4f628248a5 aka "kbuild: reintroduce
ALLSOURCE_ARCHS support for tags/cscope" breaks tags generation for
Kconfig symbols.

Steps to reproduce:

	make tags
	vi -t PROC_FS

It should jump to 'config PROC_FS' line.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Tested-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
hifive-unleashed-5.1
Alexey Dobriyan 2009-02-11 13:24:09 -08:00 committed by Sam Ravnborg
parent 0bb98e2318
commit 953fae66d1
1 changed files with 4 additions and 1 deletions

View File

@ -76,7 +76,10 @@ all_sources()
all_kconfigs()
{
find_sources $ALLSOURCE_ARCHS 'Kconfig*'
for arch in $ALLSOURCE_ARCHS; do
find_sources $arch 'Kconfig*'
done
find_other_sources 'Kconfig*'
}
all_defconfigs()