This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 0b4631bc3 MINOR: Fix typo of _zstd_path in the FindZSTD.cmake
0b4631bc3 is described below
commit 0b4631bc343ed559e284ea6f824f31890f798e31
Author: Yuriy Chernyshov <[email protected]>
AuthorDate: Tue Mar 19 09:16:32 2024 +0800
MINOR: Fix typo of _zstd_path in the FindZSTD.cmake
This is just a typo fix, no need to do the bureaucracy
Closes #1849 from georgthegreat/patch-1.
Authored-by: Yuriy Chernyshov <[email protected]>
Signed-off-by: Gang Wu <[email protected]>
---
cmake_modules/FindZSTD.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake_modules/FindZSTD.cmake b/cmake_modules/FindZSTD.cmake
index 3395d7b51..7ec197221 100644
--- a/cmake_modules/FindZSTD.cmake
+++ b/cmake_modules/FindZSTD.cmake
@@ -56,7 +56,7 @@ if (ZSTD_FOUND)
message (STATUS "Found the zstd static library: ${ZSTD_STATIC_LIB}")
endif ()
else()
- if (_ZSTD_path)
+ if (_zstd_path)
set (ZSTD_ERR_MSG "Could not find zstd. Looked in ${_zstd_path}.")
else ()
set (ZSTD_ERR_MSG "Could not find zstd in system search paths.")