mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/expand_defines_dict' into 'master'
doc: fix defines dict expansion See merge request espressif/esp-idf!8169
This commit is contained in:
commit
8210802703
@ -71,7 +71,7 @@ def generate_doxygen(app, project_description):
|
||||
print("Calling Doxygen to generate latest XML files")
|
||||
doxy_env = os.environ
|
||||
doxy_env.update({
|
||||
"ENV_DOXYGEN_DEFINES": " ".join(defines),
|
||||
"ENV_DOXYGEN_DEFINES": " ".join('{}={}'.format(key, value) for key, value in defines.items()),
|
||||
"IDF_PATH": app.config.idf_path,
|
||||
"IDF_TARGET": app.config.idf_target,
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user