[Python-Dev] [Python-checkins] cpython: Issue #15102: find python.exe in OutDir, not SolutionDir. (original) (raw)

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 @@   python33$(PyDebugExt) -    $(SolutionDir)python$(PyDebugExt).exe +    $(OutDir)python$(PyDebugExt).exe $(OutDir)killpython$(PyDebugExt).exe .... $(externalsDir)\sqlite-3.7.12

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