Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions scripts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,8 @@ def get_win_thirdparty_dir():
""" Returns the path of the thirdparty directory, windows only """
msvc_suffix = get_panda_msvc_version().suffix

# The thirdparty directory is named "vc14" for example instead of "vc140"
if msvc_suffix.endswith("0"):
msvc_suffix = msvc_suffix[:-1]
# The thirdparty directory is named "vc14" for example instead of "vc142"
msvc_suffix = msvc_suffix[:-1]

bit_suffix = "-x64" if is_64_bit() else ""
full_suffix = "-" + msvc_suffix + bit_suffix
Expand Down