Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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()