Kaydet (Commit) 0f4acc1a authored tarafından Zachary Ware's avatar Zachary Ware

Issue #9765: Adjust where Tools/msi/msi.py looks for Tcl/Tk license terms.

Patch by Daniel Stutzbach.
üst 420dc560
...@@ -925,8 +925,8 @@ def generate_license(): ...@@ -925,8 +925,8 @@ def generate_license():
shutil.copyfileobj(open("crtlicense.txt"), out) shutil.copyfileobj(open("crtlicense.txt"), out)
for name, pat, file in (("bzip2","bzip2-*", "LICENSE"), for name, pat, file in (("bzip2","bzip2-*", "LICENSE"),
("openssl", "openssl-*", "LICENSE"), ("openssl", "openssl-*", "LICENSE"),
("Tcl", "tcl8*", "license.terms"), ("Tcl", "tcl-8*", "license.terms"),
("Tk", "tk8*", "license.terms"), ("Tk", "tk-8*", "license.terms"),
("Tix", "tix-*", "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) 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) dirs = glob.glob(srcdir+"/../"+pat)
......
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