Change requests for Rust update v1.66.0

Test: ./build.py --lto=thin
Bug: 263153841
Change-Id: I7cd07a67291213dac8c80fa6b85cf746066ffb1d
This commit is contained in:
Charisee
2023-01-25 01:20:41 +00:00
parent a7b72f4a02
commit b1bf592d68

View File

@@ -339,7 +339,7 @@ fn write_android_bp(
let mut outs: Vec<String> = Vec::new();
for f in out_files.iter() {
let dest = out_dir.join(f.file_name().unwrap());
std::fs::copy(f, &dest).expect("failed to copy out file");
std::fs::copy(f, dest).expect("failed to copy out file");
outs.push(f.file_name().unwrap().to_str().unwrap().to_string());
}