diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-06-17 15:21:28 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-06-17 15:21:28 (GMT) |
commit | 00f6493084c385033fe5574314223217d9a26672 (patch) | |
tree | 5bc0ca8ef48f242e98eeada527f76499d6827722 /PCbuild/python.vcxproj | |
parent | 5352cc41fa4eb5f0dc847709392e88473b8593b0 (diff) | |
download | cpython-00f6493084c385033fe5574314223217d9a26672.zip cpython-00f6493084c385033fe5574314223217d9a26672.tar.gz cpython-00f6493084c385033fe5574314223217d9a26672.tar.bz2 |
bpo-37288: Fix Windows build when --no-tkinter is specified (GH-14096)
Diffstat (limited to 'PCbuild/python.vcxproj')
-rw-r--r-- | PCbuild/python.vcxproj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/python.vcxproj b/PCbuild/python.vcxproj index fdf8f12..e37bcfb 100644 --- a/PCbuild/python.vcxproj +++ b/PCbuild/python.vcxproj @@ -150,10 +150,10 @@ $(_PGOPath) <LicenseFiles Include="$(PySourcePath)LICENSE; $(PySourcePath)PC\crtlicense.txt; $(bz2Dir)LICENSE; - $(opensslOutDir)LICENSE; - $(tcltkDir)tcllicense.terms; + $(opensslOutDir)LICENSE;" /> + <LicenseFiles Include="$(tcltkDir)tcllicense.terms; $(tcltkDir)tklicense.terms; - $(tcltkDir)tixlicense.terms" /> + $(tcltkDir)tixlicense.terms" Condition="$(IncludeTkinter)" /> <_LicenseFiles Include="@(LicenseFiles)"> <Content>$([System.IO.File]::ReadAllText(%(FullPath)))</Content> </_LicenseFiles> |