[Python-checkins] cpython: Issue #15102: find python.exe in OutDir, not SolutionDir.

martin.v.loewis python-checkins at python.org
Sun Jun 24 00:22:35 CEST 2012


http://hg.python.org/cpython/rev/9c71d7f057b3
changeset:   77654:9c71d7f057b3
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Sun Jun 24 00:22:28 2012 +0200
summary:
  Issue #15102: find python.exe in OutDir, not SolutionDir.

files:
  PCbuild/pyproject.props |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -2,7 +2,7 @@
 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup Label="UserMacros">
     <PyDllName>python33$(PyDebugExt)</PyDllName>
-    <PythonExe>$(SolutionDir)python$(PyDebugExt).exe</PythonExe>
+    <PythonExe>$(OutDir)python$(PyDebugExt).exe</PythonExe>
     <KillPythonExe>$(OutDir)kill_python$(PyDebugExt).exe</KillPythonExe>
     <externalsDir>..\..</externalsDir>
     <sqlite3Dir>$(externalsDir)\sqlite-3.7.12</sqlite3Dir>

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list