summaryrefslogtreecommitdiffstats
path: root/Tools/msi/make_zip.proj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-05-02 22:32:14 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-05-02 22:32:14 (GMT)
commit6b4c63dea5a1e470849a6925c1b29faea2b01636 (patch)
tree3a486d54a248a7fc782447e7383718ceb29cffb5 /Tools/msi/make_zip.proj
parent19694abd71150a4a86c97eb9e2d36859260fa907 (diff)
downloadcpython-6b4c63dea5a1e470849a6925c1b29faea2b01636.zip
cpython-6b4c63dea5a1e470849a6925c1b29faea2b01636.tar.gz
cpython-6b4c63dea5a1e470849a6925c1b29faea2b01636.tar.bz2
Makes embedded distribution a plain ZIP file and corrects pyd exclusion.
Diffstat (limited to 'Tools/msi/make_zip.proj')
-rw-r--r--Tools/msi/make_zip.proj3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/msi/make_zip.proj b/Tools/msi/make_zip.proj
index d47de88..a0f461a 100644
--- a/Tools/msi/make_zip.proj
+++ b/Tools/msi/make_zip.proj
@@ -9,8 +9,9 @@
<Import Project="msi.props" />
<PropertyGroup>
+ <SignOutput>false</SignOutput>
<TargetName>python-$(PythonVersion)-embed-$(ArchName)</TargetName>
- <TargetExt>.exe</TargetExt>
+ <TargetExt>.zip</TargetExt>
<TargetPath>$(OutputPath)\en-us\$(TargetName)$(TargetExt)</TargetPath>
<Arguments>"$(PythonExe)" "$(MSBuildThisFileDirectory)\make_zip.py"</Arguments>
<Arguments>$(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -a $(ArchName)</Arguments>