diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-04-23 20:37:37 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-04-23 20:37:37 (GMT) |
commit | 0f4acc1ab172fec91bc65cd1b02241de9eb65c05 (patch) | |
tree | e74e32ed38cdb89ebb6d1d110b1d673b34a3adbb /Tools/msi | |
parent | 420dc560145cdf4d64d8ff8043d2d3fae9f235f9 (diff) | |
download | cpython-0f4acc1ab172fec91bc65cd1b02241de9eb65c05.zip cpython-0f4acc1ab172fec91bc65cd1b02241de9eb65c05.tar.gz cpython-0f4acc1ab172fec91bc65cd1b02241de9eb65c05.tar.bz2 |
Issue #9765: Adjust where Tools/msi/msi.py looks for Tcl/Tk license terms.
Patch by Daniel Stutzbach.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index e399dde..1c627a7 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -925,8 +925,8 @@ def generate_license(): shutil.copyfileobj(open("crtlicense.txt"), out) for name, pat, file in (("bzip2","bzip2-*", "LICENSE"), ("openssl", "openssl-*", "LICENSE"), - ("Tcl", "tcl8*", "license.terms"), - ("Tk", "tk8*", "license.terms"), + ("Tcl", "tcl-8*", "license.terms"), + ("Tk", "tk-8*", "license.terms"), ("Tix", "tix-*", "license.terms")): out.write("\nThis copy of Python includes a copy of %s, which is licensed under the following terms:\n\n" % name) dirs = glob.glob(srcdir+"/../"+pat) |