diff options
author | Steve Dower <steve.dower@python.org> | 2019-09-11 13:43:00 +0100 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2019-09-11 13:43:00 +0100 |
commit | 8fcaffb048d2359a4c06ed5d8fbbf46d3ae1a472 (patch) | |
tree | 43733b302e2c4acb58aab044f382867456c78aa0 /PCbuild | |
parent | 62cf6981425c6a6b136c5e2abef853364f535e9d (diff) | |
download | cpython-git-8fcaffb048d2359a4c06ed5d8fbbf46d3ae1a472.tar.gz |
bpo-37326: Include libffi license when available (GH-15921)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/python.vcxproj | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PCbuild/python.vcxproj b/PCbuild/python.vcxproj index e37bcfb0b6..2094420a8d 100644 --- a/PCbuild/python.vcxproj +++ b/PCbuild/python.vcxproj @@ -150,12 +150,13 @@ $(_PGOPath) <LicenseFiles Include="$(PySourcePath)LICENSE; $(PySourcePath)PC\crtlicense.txt; $(bz2Dir)LICENSE; - $(opensslOutDir)LICENSE;" /> + $(opensslOutDir)LICENSE; + $(libffiDir)LICENSE;" /> <LicenseFiles Include="$(tcltkDir)tcllicense.terms; $(tcltkDir)tklicense.terms; $(tcltkDir)tixlicense.terms" Condition="$(IncludeTkinter)" /> <_LicenseFiles Include="@(LicenseFiles)"> - <Content>$([System.IO.File]::ReadAllText(%(FullPath)))</Content> + <Content Condition="Exists(%(FullPath))">$([System.IO.File]::ReadAllText(%(FullPath)))</Content> </_LicenseFiles> </ItemGroup> |