[Python-Dev] [Python-checkins] cpython: Issue #15102: find python.exe in OutDir, not SolutionDir.
Jeremy Kloth
jeremy.kloth at gmail.com
Sun Jun 24 16:12:07 CEST 2012
> --- 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>
In order for this change to accurately reflect the OutDir in the x64
builds, all imports of x64.props need to be moved to be before the
pyproject.props import statements.
More information about the Python-Dev
mailing list