From 5d6a49ed9375b1a4d84da25f0c3d1e60224809a2 Mon Sep 17 00:00:00 2001 From: Yohei Yukawa Date: Tue, 17 Dec 2024 03:41:47 +0900 Subject: [PATCH] Address comment --- src/build_mozc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build_mozc.py b/src/build_mozc.py index 7b7dbb6ee2..53a0aa54d8 100755 --- a/src/build_mozc.py +++ b/src/build_mozc.py @@ -400,7 +400,7 @@ def UpdateEnvironmentFilesForWindows(out_dir, vcvarsall_path): vs_arch = platform.uname().machine if vs_arch != 'arm64': vs_arch = vs_arch + '_arm64' - vs_env = get_vs_env_vars(vs_arch) + vs_env = get_vs_env_vars(vs_arch, vcvarsall_path_hint=vcvarsall_path) env['INCLUDE'] = vs_env['INCLUDE'] env['LIB'] = vs_env['LIB'] env['LIBPATH'] = vs_env['LIBPATH']