aboutsummaryrefslogtreecommitdiff
path: root/src/libc_installation.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-11-30 00:25:52 -0500
committerGitHub <noreply@github.com>2019-11-30 00:25:52 -0500
commit85e1e3b95f1f1699a842a5e889d8987692a829a4 (patch)
tree74eff09f778dafe1b77ea1e1ec764b3ade3b4eb8 /src/libc_installation.cpp
parentf980c29306ac9435662bde6fb5557ca0c6d98310 (diff)
parent6ebd26f3dbaf54230f24118043fe91d1f09f9e8e (diff)
downloadzig-85e1e3b95f1f1699a842a5e889d8987692a829a4.tar.gz
zig-85e1e3b95f1f1699a842a5e889d8987692a829a4.zip
Merge pull request #3284 from Sahnvour/export_variables
Improved support for exporting variables
Diffstat (limited to 'src/libc_installation.cpp')
-rw-r--r--src/libc_installation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libc_installation.cpp b/src/libc_installation.cpp
index 6ae6bb9075..2adc1cb69d 100644
--- a/src/libc_installation.cpp
+++ b/src/libc_installation.cpp
@@ -389,7 +389,7 @@ static Error zig_libc_find_native_msvc_include_dir(ZigLibCInstallation *self, Zi
}
Buf search_path = BUF_INIT;
buf_init_from_mem(&search_path, sdk->msvc_lib_dir_ptr, sdk->msvc_lib_dir_len);
- buf_append_str(&search_path, "\\..\\..\\include");
+ buf_append_str(&search_path, "..\\..\\include");
Buf *vcruntime_path = buf_sprintf("%s\\vcruntime.h", buf_ptr(&search_path));
bool exists;