aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake_conf.py
diff options
context:
space:
mode:
authorkhodyrev <khodyrev@yandex-team.ru>2022-02-10 16:49:29 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:29 +0300
commit4d75b7f76712a8150bd526a7ef43d279d9892eb7 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /build/ymake_conf.py
parent47c1310af4978d726db4670c6828c59fadb89c1b (diff)
downloadydb-4d75b7f76712a8150bd526a7ef43d279d9892eb7.tar.gz
Restoring authorship annotation for <khodyrev@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/ymake_conf.py')
-rwxr-xr-xbuild/ymake_conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index 0474349489..30219eb85e 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -2530,7 +2530,7 @@ class MSVCCompiler(MSVC, Compiler):
flags_debug += ['/MTd']
flags_release += ['/MT']
- vc_include = os.path.join(self.tc.vc_root, 'include') if not self.tc.ide_msvs else "$(VC_VC_IncludePath.Split(';')[0].Replace('\\','/'))"
+ vc_include = os.path.join(self.tc.vc_root, 'include') if not self.tc.ide_msvs else "$(VC_VC_IncludePath.Split(';')[0].Replace('\\','/'))"
if not self.tc.ide_msvs:
def include_flag(path):
@@ -2581,7 +2581,7 @@ class MSVCCompiler(MSVC, Compiler):
append('BC_CFLAGS', '$CFLAGS')
append('BC_CXXFLAGS', '$BC_CFLAGS', '$CXXFLAGS')
- ucrt_include = os.path.join(self.tc.kit_includes, 'ucrt') if not self.tc.ide_msvs else "$(UniversalCRT_IncludePath.Split(';')[0].Replace('\\','/'))"
+ ucrt_include = os.path.join(self.tc.kit_includes, 'ucrt') if not self.tc.ide_msvs else "$(UniversalCRT_IncludePath.Split(';')[0].Replace('\\','/'))"
# clang-cl has '#include_next', and MSVC hasn't. It needs separately specified CRT and VC include directories for libc++ to include second in order standard C and C++ headers.
if not self.tc.use_clang: