From ad0bca9c8526bcbdeb4b757ae553b3b2fc2d8569 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Fri, 4 Apr 2025 17:33:18 +0100 Subject: [PATCH] Fix bug in extract_configs.py (#2389) This bug was actually introduced by #1845 , but I never noticed until now because it depended on which order the filesystem traversed the directories --- tools/extract_configs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/extract_configs.py b/tools/extract_configs.py index 81f57625..00ff3437 100755 --- a/tools/extract_configs.py +++ b/tools/extract_configs.py @@ -241,6 +241,7 @@ for applicable, all_defines in chips_all_defines.items(): for applicable, all_configs in chips_all_configs.items(): all_defines = chips_all_defines[applicable] + resolved_defines = chips_resolved_defines[applicable] for config_name, config_obj in all_configs.items(): file_path = os.path.join(scandir, config_obj['filename']) linenum = config_obj['line_number']