Skip to content

Commit

Permalink
Changed MSVCP90 location to be from vcredist_x64 for py2exe
Browse files Browse the repository at this point in the history
  • Loading branch information
robmcmullen committed Jan 31, 2016
1 parent 74bc021 commit 8afe9b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def run(self):
if sys.platform.startswith("win"):
import py2exe
if is_64bit:
# Help py2exe find MSVCP90.DLL
sys.path.append("c:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/redist/amd64/Microsoft.VC90.CRT")
# Help py2exe find MSVCP90.DLL from vcredist_x64
sys.path.append("C:/Windows/winsxs/amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_08e61857a83bc251")
else:
# Help py2exe find MSVCP90.DLL
sys.path.append("c:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/redist/x86/Microsoft.VC90.CRT")
Expand Down

0 comments on commit 8afe9b1

Please sign in to comment.