summaryrefslogtreecommitdiff
path: root/PCbuild/python3dll.vcxproj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-07-03 09:08:47 -0700
committerSteve Dower <steve.dower@microsoft.com>2015-07-03 09:08:47 -0700
commitac2bd5b1e8c5d8ee04c12ef6f34f1c9f1f8338c0 (patch)
tree715c9a4e41cf696ba41847d36729609d9d28b8ec /PCbuild/python3dll.vcxproj
parentfdbeb2b4b67e1e44c96127a06cf1bdf878f4f7ca (diff)
downloadcpython-git-ac2bd5b1e8c5d8ee04c12ef6f34f1c9f1f8338c0.tar.gz
Fixes warnings when building python3.dll due to the .def file accumulating multiple copies of each line.
Adds shebang line to prepare_ssl so it will run with py.exe.
Diffstat (limited to 'PCbuild/python3dll.vcxproj')
-rw-r--r--PCbuild/python3dll.vcxproj4
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/python3dll.vcxproj b/PCbuild/python3dll.vcxproj
index b03d09fa39..18ff4a83e9 100644
--- a/PCbuild/python3dll.vcxproj
+++ b/PCbuild/python3dll.vcxproj
@@ -109,7 +109,7 @@
</_Lines>
</ItemGroup>
<MakeDir Directories="$(IntDir)" />
- <WriteLinesToFile File="$(IntDir)python3_d.def" Lines="@(_Lines->'%(New)')" />
+ <WriteLinesToFile File="$(IntDir)python3_d.def" Lines="@(_Lines->'%(New)')" Overwrite="true" />
</Target>
<Target Name="BuildStubDef" BeforeTargets="PreLinkEvent" Inputs="..\PC\python3.def" Outputs="$(IntDir)python3stub.def">
@@ -132,7 +132,7 @@
<_Lines Include="@(_Symbols->'%(Symbol)')" />
</ItemGroup>
<MakeDir Directories="$(IntDir)" />
- <WriteLinesToFile File="$(IntDir)python3stub.def" Lines="@(_Lines)" />
+ <WriteLinesToFile File="$(IntDir)python3stub.def" Lines="@(_Lines)" Overwrite="true" />
</Target>
<Target Name="_CleanStubDef" BeforeTargets="CoreClean">
<ItemGroup>