Merge pull request #16 from davidanthoff/msbuildinquotes

Put quotes around the path to msbuild in setup.py
This commit is contained in:
David Anthoff 2014-03-14 15:08:54 -07:00
Родитель 7a37483dfc 0d126df9b2
Коммит 1a5f60410b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,7 @@ if DEVTOOLS == "MsDev":
cc = msvc9compiler.MSVCCompiler()
cc.initialize()
_xbuild = cc.find_exe("msbuild.exe")
_xbuild = "\"%s\"" % cc.find_exe("msbuild.exe")
_defines_sep = ";"
_config = "%sWin" % CONFIG
_npython_exe = "nPython.exe"