From: Alexey Dobriyan Date: Wed, 11 Feb 2009 21:24:09 +0000 (-0800) Subject: kbuild: fix tags generation of config symbols X-Git-Tag: 2.1b_release~14031^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=953fae66d124486c9e284806429c52c5402f59ac;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git kbuild: fix tags generation of config symbols commit 4f628248a578585472e19e4cba2c604643af8c6c 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 Tested-by: Pete Wyckoff Signed-off-by: Andrew Morton Signed-off-by: Sam Ravnborg --- diff --git a/scripts/tags.sh b/scripts/tags.sh index fdbe78b..7e21e91 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -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()