summaryrefslogtreecommitdiffstats
path: root/Tools/msi/make_zip.proj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-07-16 23:13:19 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-07-16 23:13:19 (GMT)
commit6fd76bceda3fefc5e5814108c5fe819050613d33 (patch)
treef8acf1d6f83647788e50ca1ad2b530b1a4f33560 /Tools/msi/make_zip.proj
parentff1d5ab16e6424cf000be314e3c5ca8e42ae43f4 (diff)
downloadcpython-6fd76bceda3fefc5e5814108c5fe819050613d33.zip
cpython-6fd76bceda3fefc5e5814108c5fe819050613d33.tar.gz
cpython-6fd76bceda3fefc5e5814108c5fe819050613d33.tar.bz2
Fixes use of Py_IntDir and Py_OutDir to control build directories.
Diffstat (limited to 'Tools/msi/make_zip.proj')
-rw-r--r--Tools/msi/make_zip.proj2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/make_zip.proj b/Tools/msi/make_zip.proj
index d2e031f..13f75ba 100644
--- a/Tools/msi/make_zip.proj
+++ b/Tools/msi/make_zip.proj
@@ -16,7 +16,7 @@
<TargetPath>$(OutputPath)\en-us\$(TargetName)$(TargetExt)</TargetPath>
<CleanCommand>rmdir /q/s "$(IntermediateOutputPath)\zip_$(ArchName)"</CleanCommand>
<Arguments>"$(PythonExe)" "$(MSBuildThisFileDirectory)\make_zip.py"</Arguments>
- <Arguments>$(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -a $(ArchName)</Arguments>
+ <Arguments>$(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -b "$(OutDir.TrimEnd('\'))"</Arguments>
<Environment>set DOC_FILENAME=python$(PythonVersion).chm
set VCREDIST_PATH=$(VS140COMNTOOLS)\..\..\VC\redist\$(Platform)\Microsoft.VC140.CRT</Environment>
</PropertyGroup>