Commit 8fcaffb0 authored by Steve Dower's avatar Steve Dower Committed by Zachary Ware

bpo-37326: Include libffi license when available (GH-15921)

parent 62cf6981
...@@ -150,12 +150,13 @@ $(_PGOPath) ...@@ -150,12 +150,13 @@ $(_PGOPath)
<LicenseFiles Include="$(PySourcePath)LICENSE; <LicenseFiles Include="$(PySourcePath)LICENSE;
$(PySourcePath)PC\crtlicense.txt; $(PySourcePath)PC\crtlicense.txt;
$(bz2Dir)LICENSE; $(bz2Dir)LICENSE;
$(opensslOutDir)LICENSE;" /> $(opensslOutDir)LICENSE;
$(libffiDir)LICENSE;" />
<LicenseFiles Include="$(tcltkDir)tcllicense.terms; <LicenseFiles Include="$(tcltkDir)tcllicense.terms;
$(tcltkDir)tklicense.terms; $(tcltkDir)tklicense.terms;
$(tcltkDir)tixlicense.terms" Condition="$(IncludeTkinter)" /> $(tcltkDir)tixlicense.terms" Condition="$(IncludeTkinter)" />
<_LicenseFiles Include="@(LicenseFiles)"> <_LicenseFiles Include="@(LicenseFiles)">
<Content>$([System.IO.File]::ReadAllText(%(FullPath)))</Content> <Content Condition="Exists(%(FullPath))">$([System.IO.File]::ReadAllText(%(FullPath)))</Content>
</_LicenseFiles> </_LicenseFiles>
</ItemGroup> </ItemGroup>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment