Skip to content

Commit

Permalink
Properly handle "preserve_source_file_extension" config option
Browse files Browse the repository at this point in the history
  • Loading branch information
valeros committed Jun 6, 2024
1 parent 022e604 commit 8818b42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/frameworks/espidf.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,8 +752,8 @@ def compile_source_files(
obj_path = os.path.join(obj_path, os.path.basename(src_path))

preserve_source_file_extension = board.get(
"build.esp-idf.preserve_source_file_extension", True
)
"build.esp-idf.preserve_source_file_extension", "yes"
) == "yes"

objects.append(
build_envs[compile_group_idx].StaticObject(
Expand Down

0 comments on commit 8818b42

Please sign in to comment.