Issue #9765: Adjust where Tools/msi/msi.py looks for Tcl/Tk license terms.
Patch by Daniel Stutzbach.
This commit is contained in:
parent
420dc56014
commit
0f4acc1ab1
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue