summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-06-23 22:22:28 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-06-23 22:22:28 (GMT)
commitf52f527c7653c6d3389c54386d0b306b946d0d9a (patch)
treecbdca7a12ef3decface3f57bf0a2d1c5cb0cbae6 /PCbuild
parent75aeaa9b18667219bbacbc58ba6efecccef9dfbd (diff)
downloadcpython-f52f527c7653c6d3389c54386d0b306b946d0d9a.zip
cpython-f52f527c7653c6d3389c54386d0b306b946d0d9a.tar.gz
cpython-f52f527c7653c6d3389c54386d0b306b946d0d9a.tar.bz2
Issue #15102: find python.exe in OutDir, not SolutionDir.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pyproject.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index fba778a..8041a6d 100644
--- 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>