Commit 953fae66 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Sam Ravnborg

kbuild: fix tags generation of config symbols

commit 4f628248 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: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Tested-by: default avatarPete Wyckoff <pw@padd.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 0bb98e23
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment