]> granicus.if.org Git - esp-idf/commitdiff
tools: Check syntax also of Kconfig.in files
authorRoland Dobai <dobai.roland@gmail.com>
Tue, 14 May 2019 14:23:19 +0000 (16:23 +0200)
committerRoland Dobai <dobai.roland@gmail.com>
Tue, 21 May 2019 07:09:01 +0000 (09:09 +0200)
tools/check_kconfigs.py

index bc094de03086ea77f5ce540ad44c58ef8bff57ce..843502cb10c8b961ee19094ec810f4e7830a9d8c 100755 (executable)
@@ -23,7 +23,7 @@ import argparse
 from io import open
 
 # regular expression for matching Kconfig files
-RE_KCONFIG = r'^Kconfig(?:\.projbuild)?$'
+RE_KCONFIG = r'^Kconfig(\.projbuild)?(\.in)?$'
 
 # ouput file with suggestions will get this suffix
 OUTPUT_SUFFIX = '.new'