-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Description
Lines 76 to 81 in 2ad5292
let prefix = builder.config.prefix.as_ref().map_or(prefix_default, |p| { | |
fs::create_dir_all(p) | |
.unwrap_or_else(|err| panic!("could not create {}: {}", p.display(), err)); | |
fs::canonicalize(p) | |
.unwrap_or_else(|err| panic!("could not canonicalize {}: {}", p.display(), err)) | |
}); |
This creates the prefix directory without DESTDIR prepended.
Metadata
Metadata
Assignees
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)