diff options
author | Steve Dower <steve.dower@microsoft.com> | 2017-10-05 20:35:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 20:35:36 (GMT) |
commit | 2084b30e540d88b9fc752c5bdcc2f24334af4f2b (patch) | |
tree | d3e924741d52f43f1e574a8fd6cb3f33e7f4fa19 /Tools/msi/msi.props | |
parent | 36c1d1f1e52ba54007cbecb42c5599e5ff62aa52 (diff) | |
download | cpython-2084b30e540d88b9fc752c5bdcc2f24334af4f2b.zip cpython-2084b30e540d88b9fc752c5bdcc2f24334af4f2b.tar.gz cpython-2084b30e540d88b9fc752c5bdcc2f24334af4f2b.tar.bz2 |
bpo-31523: Reliability improvements to the Windows build files (#3900)
Diffstat (limited to 'Tools/msi/msi.props')
-rw-r--r-- | Tools/msi/msi.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.props b/Tools/msi/msi.props index 24a90bd..0318f7a 100644 --- a/Tools/msi/msi.props +++ b/Tools/msi/msi.props @@ -48,7 +48,7 @@ </ItemGroup> <PropertyGroup> - <IntermediateOutputPath>$(Py_IntDir)\$(Configuration)_$(Platform)_Setup\$(OutputName)</IntermediateOutputPath> + <IntermediateOutputPath>$(Py_IntDir)\$(MajorVersionNumber)$(MinorVersionNumber)$(ArchName)_$(Configuration)\msi_$(OutputName)</IntermediateOutputPath> <IntermediateOutputPath Condition="'$(OutputSuffix)' != ''">$(IntermediateOutputPath)_$(OutputSuffix)</IntermediateOutputPath> <OutputPath Condition="'$(OutputPath)' == ''">$(BuildPath)</OutputPath> <OutputPath Condition="!HasTrailingSlash($(OutputPath))">$(OutputPath)\</OutputPath> |