Skip to content

Commit

Permalink
kbuild: fix tags generation of config symbols
Browse files Browse the repository at this point in the history
commit 4f62824 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>
  • Loading branch information
Alexey Dobriyan authored and Sam Ravnborg committed Feb 15, 2009
1 parent 0bb98e2 commit 953fae6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 953fae6

Please sign in to comment.