Skip to content

Commit 7fc74cd

Browse files
committed
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. (cherry picked from commit d183da6)
1 parent 2c0e146 commit 7fc74cd

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

Diff for: src/bootstrap/src/core/build_steps/dist.rs

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

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

0 commit comments

Comments
 (0)