Skip to content

Commit

Permalink
Fix serialization in toolchain file
Browse files Browse the repository at this point in the history
  • Loading branch information
hofbi committed Aug 26, 2024
1 parent a11818b commit 52f9694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchains/cc/cc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def _nixpkgs_cc_toolchain_config_impl(repository_ctx):
"%{coverage_compile_flags}": get_starlark_list(info.coverage_compile_flags),
"%{coverage_link_flags}": get_starlark_list(info.coverage_link_flags),
"%{supports_start_end_lib}": repr(info.supports_start_end_lib),
"%{extra_flags_per_feature}": repr(info.extra_flags_per_feature),
"%{extra_flags_per_feature}": get_starlark_list(info.extra_flags_per_feature),
"%{conly_flags}": get_starlark_list(info.conly_flags),
},
)
Expand Down

0 comments on commit 52f9694

Please sign in to comment.