summaryrefslogtreecommitdiff
path: root/Tools/msi/make_zip.proj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-05-02 15:32:14 -0700
committerSteve Dower <steve.dower@microsoft.com>2015-05-02 15:32:14 -0700
commit1428d15a3e55c1698390ebb31abb41994d0de8f0 (patch)
tree9659817198faef2aea5d2370a9071258d8ef1a0e /Tools/msi/make_zip.proj
parent72b8f4edfdca60e15842872fcb32cdb39d103710 (diff)
downloadcpython-1428d15a3e55c1698390ebb31abb41994d0de8f0.tar.gz
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 d47de88335..a0f461a71d 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>