Skip to content

Commit 3a24287

Browse files
committed
Escape string
1 parent dec2019 commit 3a24287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cc/private/toolchain/windows_cc_configure.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ def _get_copts(repository_ctx):
882882
"%{conly_flags}": get_starlark_list(conly_opts),
883883
"%{cxx_flags}": get_starlark_list(cxx_opts),
884884
"%{link_flags}": get_starlark_list(link_opts),
885-
"%{win32_winnt_flag}": win32_winnt_opts,
885+
"%{win32_winnt_flag}": escape_string(win32_winnt_opts),
886886
}
887887
return copts_vars
888888

0 commit comments

Comments
 (0)