mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
Normalize bootstrap_out path, r=clubby789
This commit is contained in:
parent
d3555f3d8e
commit
feeb1842cb
@ -370,11 +370,16 @@ impl Build {
|
||||
.expect("failed to read src/version");
|
||||
let version = version.trim();
|
||||
|
||||
let bootstrap_out = std::env::current_exe()
|
||||
let mut bootstrap_out = std::env::current_exe()
|
||||
.expect("could not determine path to running process")
|
||||
.parent()
|
||||
.unwrap()
|
||||
.to_path_buf();
|
||||
// Since bootstrap is hardlink to deps/bootstrap-*, Solaris can sometimes give
|
||||
// path with deps/ which is bad and needs to be avoided.
|
||||
if bootstrap_out.ends_with("deps") {
|
||||
bootstrap_out.pop();
|
||||
}
|
||||
if !bootstrap_out.join(exe("rustc", config.build)).exists() && !cfg!(test) {
|
||||
// this restriction can be lifted whenever https://github.com/rust-lang/rfcs/pull/3028 is implemented
|
||||
panic!(
|
||||
|
Loading…
Reference in New Issue
Block a user