Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1573652
| From | Hou Tao <houtao1@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] scripts/tags.sh: include arch/Kconfig* for tags generation |
| Date | 2017-02-04 12:10 +0100 |
| Message-ID | <t76oa-82L-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Kconfig files under arch/ directory are ignored by all_kconfigs(),
so include them for tags generation.
Signed-off-by: Hou Tao <houtao1@huawei.com>
---
scripts/tags.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scripts/tags.sh b/scripts/tags.sh
index df5fa77..d661f2f 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -128,6 +128,8 @@ all_target_sources()
all_kconfigs()
{
+ find ${tree}arch/ -maxdepth 1 $ignore \
+ -name "Kconfig*" -not -type l -print;
for arch in $ALLSOURCE_ARCHS; do
find_sources $arch 'Kconfig*'
done
--
2.5.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] scripts/tags.sh: include arch/Kconfig* for tags generation Hou Tao <houtao1@huawei.com> - 2017-02-04 12:10 +0100
csiph-web