diff --git a/Misc/NEWS.d/next/Windows/2018-06-24-12-09-23.bpo-33711.LpO0s1.rst b/Misc/NEWS.d/next/Windows/2018-06-24-12-09-23.bpo-33711.LpO0s1.rst new file mode 100644 index 00000000000000..e97b811bae48f9 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2018-06-24-12-09-23.bpo-33711.LpO0s1.rst @@ -0,0 +1 @@ +Fixed licence generation error when building the installer. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 65ce5c153cfff8..da4a1c3d95981b 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -917,7 +917,7 @@ def generate_license(): shutil.copyfileobj(open(os.path.join(srcdir, "LICENSE")), out) shutil.copyfileobj(open("crtlicense.txt"), out) for name, pat, file in (("bzip2","bzip2-*", "LICENSE"), - ("Berkeley DB", "db-*", "LICENSE"), + ("Berkeley DB", "bsddb-*", "LICENSE"), ("openssl", "openssl-*", "LICENSE"), ("Tcl", "tcl-8*", "license.terms"), ("Tk", "tk-8*", "license.terms"),