diff options
author | Robert Bragg <robert@sixbynine.org> | 2020-02-11 13:56:00 +0000 |
---|---|---|
committer | Robert Bragg <robert@sixbynine.org> | 2020-02-11 13:56:00 +0000 |
commit | 8902aa93e483810f688a6e3999110adb891bc9c3 (patch) | |
tree | 99e6e45b83928e8cfa5a842144bfe97322560cff /python/servo/build_commands.py | |
parent | a9831716d757fc369779bbdb0b8259ca2b667826 (diff) | |
download | servo-8902aa93e483810f688a6e3999110adb891bc9c3.tar.gz servo-8902aa93e483810f688a6e3999110adb891bc9c3.zip |
Build: check for VC142 MSVC redist dir
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index 2aa70862fd6..e6b2cd6722a 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -972,7 +972,7 @@ def package_msvc_dlls(servo_exe_dir, target, vcinstalldir, vs_version): if os.path.isdir(redist_dir): for p in os.listdir(redist_dir)[::-1]: redist_path = path.join(redist_dir, p) - for v in ["VC141", "VC150", "VC160"]: + for v in ["VC141", "VC142", "VC150", "VC160"]: # there are two possible paths # `x64\Microsoft.VC*.CRT` or `onecore\x64\Microsoft.VC*.CRT` redist1 = path.join(redist_path, vs_platform, "Microsoft.{}.CRT".format(v)) |