Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd507d commit 706735eCopy full SHA for 706735e
src/lib.rs
@@ -79,10 +79,7 @@ impl Build {
79
80
let mut configure = Command::new("perl");
81
configure.arg("./Configure");
82
- if target.contains("pc-windows-gnu") {
83
- configure.arg(&format!("--prefix={}", sanitize_sh(&install_dir)));
84
- } else if host.contains("pc-windows-gnu")
85
- && target.starts_with("mips") && target.contains("gnu") {
+ if host.contains("pc-windows-gnu") {
86
configure.arg(&format!("--prefix={}", sanitize_sh(&install_dir)));
87
} else {
88
configure.arg(&format!("--prefix={}", install_dir.display()));
0 commit comments