diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-14 17:18:05 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-14 17:18:05 +0300 |
commit | 35ebcfe2a29550a1f97636a93eb94d545287532f (patch) | |
tree | 67133a0d75fb03eb1713e2e718b4d5de21c5a8f4 /libbuild2 | |
parent | 89b60d13df310ae3afb8ee84b9feaaa0f25f53ad (diff) |
Fix bug in guess_msvc()
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/cc/guess.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/guess.cxx b/libbuild2/cc/guess.cxx index d3ad579..309158c 100644 --- a/libbuild2/cc/guess.cxx +++ b/libbuild2/cc/guess.cxx @@ -1500,7 +1500,7 @@ namespace build2 if (const msvc_info* mi = static_cast<msvc_info*> (gr.info.get ())) { lib_dirs = msvc_lib (*mi, "x64"); - lib_dirs = msvc_include (*mi); + inc_dirs = msvc_include (*mi); bpat = msvc_bin (*mi, "x64"); } |