mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
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
This commit is contained in:
parent
f62bc4f5ea
commit
ad0bca9c85
1 changed files with 1 additions and 0 deletions
|
|
@ -241,6 +241,7 @@ for applicable, all_defines in chips_all_defines.items():
|
||||||
|
|
||||||
for applicable, all_configs in chips_all_configs.items():
|
for applicable, all_configs in chips_all_configs.items():
|
||||||
all_defines = chips_all_defines[applicable]
|
all_defines = chips_all_defines[applicable]
|
||||||
|
resolved_defines = chips_resolved_defines[applicable]
|
||||||
for config_name, config_obj in all_configs.items():
|
for config_name, config_obj in all_configs.items():
|
||||||
file_path = os.path.join(scandir, config_obj['filename'])
|
file_path = os.path.join(scandir, config_obj['filename'])
|
||||||
linenum = config_obj['line_number']
|
linenum = config_obj['line_number']
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue