]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #15102: find python.exe in OutDir, not SolutionDir.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 23 Jun 2012 22:22:28 +0000 (00:22 +0200)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 23 Jun 2012 22:22:28 +0000 (00:22 +0200)
PCbuild/pyproject.props

index fba778aec9cffaae821e51966de0cefcbbd2c54e..8041a6d52027c54e67849a344fbdf4793cfa32d3 100644 (file)
@@ -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>