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 8527080 commit 3a4b561Copy full SHA for 3a4b561
libcoap-sys/build.rs
@@ -49,7 +49,7 @@ fn main() {
49
embuild::espidf::sysenv::output();
50
let esp_idf_path = embuild::espidf::sysenv::idf_path().ok_or("missing IDF path").unwrap();
51
println!("cargo:warning={}", &esp_idf_path);
52
- let esp_idf_buildroot = env::var_os("DEP_ESP_IDF_ROOT").unwrap().to_string_lossy();
+ let esp_idf_buildroot = env::var("DEP_ESP_IDF_ROOT").unwrap();
53
let esp_include_path = embuild::espidf::sysenv::cincl_args().ok_or("missing IDF cincl args").unwrap();
54
55
let arg_splitter = regex::Regex::new(r##"(?:[^\\]"[^"]*[^\\]")?(\s)"##).unwrap();
0 commit comments