Skip to content

Commit 65495cf

Browse files
committed
Fix escaping of variables
1 parent 077c3bd commit 65495cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rebuild_llama.cpp.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ $lines = @(
5454
"# "
5555
"if (LLAMA_BLAS AND DEFINED LLAMA_BLAS_VENDOR)"
5656
" if (`${LLAMA_BLAS_VENDOR} MATCHES `"OpenBLAS`")"
57-
" set(LLAMA_EXTRA_INCLUDES ${LLAMA_EXTRA_INCLUDES} `"$(Resolve-UnixPath "./vendor/OpenBLAS/include")`")"
58-
" set(LLAMA_EXTRA_LIBS ${LLAMA_EXTRA_LIBS} `"$(Resolve-UnixPath "./vendor/OpenBLAS/lib/libopenblas.dll.a")`")"
57+
" set(LLAMA_EXTRA_INCLUDES `${LLAMA_EXTRA_INCLUDES} `"$(Resolve-UnixPath "./vendor/OpenBLAS/include")`")"
58+
" set(LLAMA_EXTRA_LIBS `${LLAMA_EXTRA_LIBS} `"$(Resolve-UnixPath "./vendor/OpenBLAS/lib/libopenblas.dll.a")`")"
5959
" add_compile_definitions(GGML_USE_OPENBLAS)"
6060
" endif()"
6161
"endif()"

0 commit comments

Comments
 (0)