Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d183da6

Browse files
committedMar 12, 2025
Install licenses into share/doc/rust/licenses
This changes the path from "licences" to "licenses" for consistency across the repo, including the usage directly around this line. This is a US/UK spelling difference, but I believe the US spelling is also more common in open source in general.
1 parent 0998d40 commit d183da6

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed
 

‎src/bootstrap/src/core/build_steps/dist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ impl Step for Rustc {
519519

520520
// The REUSE-managed license files
521521
let license = |path: &Path| {
522-
builder.install(path, &image.join("share/doc/rust/licences"), 0o644);
522+
builder.install(path, &image.join("share/doc/rust/licenses"), 0o644);
523523
};
524524
for entry in t!(std::fs::read_dir(builder.src.join("LICENSES"))).flatten() {
525525
license(&entry.path());

0 commit comments

Comments
 (0)
Failed to load comments.