Skip to content

Commit 22db5f4

Browse files
committed
Fix LLAMA_HEADER env override typo
1 parent d3d6523 commit 22db5f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama-cpp-sys-2/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ fn main() {
687687
println!("cargo:rustc-link-lib=llama");
688688
println!("cargo:rustc-link-lib=ggml");
689689

690-
let llama_header_path = std::env::var("LLAMA_HEADE");
690+
let llama_header_path = std::env::var("LLAMA_HEADER");
691691
if let Ok(llama_header_path) = llama_header_path {
692692
compile_bindings(&out_path, Path::new(&llama_header_path))
693693
.expect("failed to generate bindings");

0 commit comments

Comments
 (0)