diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-05 21:09:30 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2017-10-05 21:09:30 (GMT) |
commit | 051295a8c57cc649fa5eaa43526143984a147411 (patch) | |
tree | 1f79cef0d53fa5009bffac496298b5c0192a7f4b /PCbuild | |
parent | 8aafd5fd7961df1068325d41cc0acd72e7009a0f (diff) | |
download | cpython-051295a8c57cc649fa5eaa43526143984a147411.zip cpython-051295a8c57cc649fa5eaa43526143984a147411.tar.gz cpython-051295a8c57cc649fa5eaa43526143984a147411.tar.bz2 |
[3.6] bpo-31523: Reliability improvements to the Windows build files (GH-3900) (#3902)
(cherry picked from commit 2084b30e540d88b9fc752c5bdcc2f24334af4f2b)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pyproject.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index 3d46a0f..5a2da99 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -6,7 +6,7 @@ <OutDir>$(BuildPath)</OutDir> <OutDir Condition="!HasTrailingSlash($(OutDir))">$(OutDir)\</OutDir> <Py_IntDir Condition="'$(Py_IntDir)' == ''">$(MSBuildThisFileDirectory)obj\</Py_IntDir> - <IntDir>$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\</IntDir> + <IntDir>$(Py_IntDir)\$(MajorVersionNumber)$(MinorVersionNumber)$(ArchName)_$(Configuration)\$(ProjectName)\</IntDir> <TargetName Condition="'$(TargetName)' == ''">$(ProjectName)</TargetName> <TargetName>$(TargetName)$(PyDebugExt)</TargetName> <GenerateManifest>false</GenerateManifest> |