remove trailing space

This commit is contained in:
Corwin Kuiper 2021-07-03 18:22:49 +01:00
parent eb538b4536
commit 08655ea9ee

View file

@ -11,7 +11,7 @@ fn main() {
.arg(&out_path) .arg(&out_path)
.output() .output()
.expect("should be able to build mgba"); .expect("should be able to build mgba");
println!("cargo:rustc-link-search={}", out_path.to_str().unwrap()); println!("cargo:rustc-link-search={}", out_path.to_str().unwrap());
println!("cargo:rustc-link-lib=static={}", "mgba-cycle"); println!("cargo:rustc-link-lib=static={}", "mgba-cycle");
println!("cargo:rustc-link-lib=z"); println!("cargo:rustc-link-lib=z");
println!("cargo:rustc-link-lib=elf"); println!("cargo:rustc-link-lib=elf");