From 0d126df9b2dd31e9a04319beea4f2767f9783620 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Thu, 13 Mar 2014 10:56:37 -0700 Subject: [PATCH] Put quotes around the path to msbuild in setup.py --- pythonnet/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonnet/setup.py b/pythonnet/setup.py index d1d66e06c..0c01b9e96 100644 --- a/pythonnet/setup.py +++ b/pythonnet/setup.py @@ -24,7 +24,7 @@ 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"