Skip to content

Commit

Permalink
Get the right MSVC redist
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Aug 13, 2016
1 parent b6432c9 commit a43e0f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def main():
# copy it ourselves
redist_path = os.path.join(
'c:/', 'Program Files (x86)', 'Microsoft Visual Studio 14.0', 'VC',
'redist', 'x86', 'Microsoft.VC140.CRT'
'redist', 'x{}'.format(bits), 'Microsoft.VC140.CRT'
)
redist_files = [
'msvcp140.dll',
Expand Down
2 changes: 1 addition & 1 deletion buildinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
'.'.join([str(v) for v in version_numbers])
+ status.prerelease_suffix
# TODO: this is totally cheating, revisit the revision scheme
+ '6'# prerelease_str
+ '7'# prerelease_str
)

directories = [
Expand Down

0 comments on commit a43e0f7

Please sign in to comment.