Skip to content

Commit

Permalink
Fix LLAMA_HEADER env override typo
Browse files Browse the repository at this point in the history
  • Loading branch information
brittlewis12 committed Jul 26, 2024
1 parent d3d6523 commit 22db5f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama-cpp-sys-2/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ fn main() {
println!("cargo:rustc-link-lib=llama");
println!("cargo:rustc-link-lib=ggml");

let llama_header_path = std::env::var("LLAMA_HEADE");
let llama_header_path = std::env::var("LLAMA_HEADER");
if let Ok(llama_header_path) = llama_header_path {
compile_bindings(&out_path, Path::new(&llama_header_path))
.expect("failed to generate bindings");
Expand Down

0 comments on commit 22db5f4

Please sign in to comment.