]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #9765: Adjust where Tools/msi/msi.py looks for Tcl/Tk license terms.
authorZachary Ware <zachary.ware@gmail.com>
Wed, 23 Apr 2014 20:37:37 +0000 (15:37 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Wed, 23 Apr 2014 20:37:37 +0000 (15:37 -0500)
Patch by Daniel Stutzbach.

Tools/msi/msi.py

index e399ddeafad1ba5880800501071c17d79b5c58aa..1c627a7c39e2fa8ed00f3a5cae31500c85d2bf4c 100644 (file)
@@ -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)