Skip to content

Commit 9273b22

Browse files
committed
Overlay: ensure that the path contains the directory separator
We concatenated the path without consideration for the path separator as the path separator was expected to be present. This is not guaranteed. Explicitly add the missing separator which is required to construct the proper path.
1 parent 94cf963 commit 9273b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtimes/Overlay/Windows/clang/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ roots:
2525
- name: module.modulemap
2626
type: file
2727
external-contents: "@CMAKE_CURRENT_SOURCE_DIR@/ucrt.modulemap"
28-
- name: "@VCToolsInstallDir@include"
28+
- name: "@VCToolsInstallDir@/include"
2929
type: directory
3030
contents:
3131
- name: module.modulemap

0 commit comments

Comments
 (0)