remove static from ovr linux

This commit is contained in:
Colin Sherratt
2015-05-15 01:12:13 -04:00
parent cee88bede3
commit 13472c3837

View File

@ -14,7 +14,7 @@ fn main() {
&Path::new(env!("OUT_DIR")).join(Path::new("libovr.a")))
.ok().expect("Failed to move file");
println!("cargo:rustc-flags=-L {} -l ovr:static", env!("OUT_DIR"));
println!("cargo:rustc-flags=-L {} -l ovr", env!("OUT_DIR"));
}