We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80bb8f4 commit b76d70cCopy full SHA for b76d70c
webrtc-sys/build/src/lib.rs
@@ -17,7 +17,7 @@ use std::{
17
error::Error,
18
fs::{self, File},
19
io::{self, BufRead, Write},
20
- path,
+ path::{self, PathBuf},
21
process::Command,
22
};
23
@@ -109,8 +109,7 @@ pub fn webrtc_dir() -> path::PathBuf {
109
if let Some(path) = custom_dir() {
110
return path;
111
}
112
-
113
- prebuilt_dir()
+ PathBuf::from(std::env::var("OUT_DIR").unwrap()).join("webrtc-download")
114
115
116
pub fn webrtc_defines() -> Vec<(String, Option<String>)> {
0 commit comments