bpo-33711: Fix license generation error in installer build script (GH… · python/cpython@b18f098 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit b18f098
authored and
committed
File tree
2 files changed
lines changed
2 files changed
lines changed
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1 | +Fixed licence generation error when building the installer. |
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -917,7 +917,7 @@ def generate_license(): | ||
917 | 917 | shutil.copyfileobj(open(os.path.join(srcdir, "LICENSE")), out) |
918 | 918 | shutil.copyfileobj(open("crtlicense.txt"), out) |
919 | 919 | for name, pat, file in (("bzip2","bzip2-*", "LICENSE"), |
920 | - ("Berkeley DB", "db-*", "LICENSE"), | |
920 | + ("Berkeley DB", "bsddb-*", "LICENSE"), | |
921 | 921 | ("openssl", "openssl-*", "LICENSE"), |
922 | 922 | ("Tcl", "tcl-8*", "license.terms"), |
923 | 923 | ("Tk", "tk-8*", "license.terms"), |