You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2020/08/02 04:20:17 UTC

[orc] branch branch-1.6 updated: ORC-650: Fix argument to find_package() for ZSTD

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-1.6
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.6 by this push:
     new bebff7d  ORC-650: Fix argument to find_package() for ZSTD
bebff7d is described below

commit bebff7dfdabbda048f84934ae77d75aa6f81cf2e
Author: Nehal J Wani <ne...@gmail.com>
AuthorDate: Wed Jul 29 16:28:29 2020 -0400

    ORC-650: Fix argument to find_package() for ZSTD
    
    The name of the module is FindZSTD.cmake and not Findzstd.cmake
    
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
    (cherry picked from commit dc1d4ffb8e5bd7cc992f7260db69bf2a1f22f9fc)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 cmake_modules/ThirdpartyToolchain.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake_modules/ThirdpartyToolchain.cmake b/cmake_modules/ThirdpartyToolchain.cmake
index b70540b..7692444 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -136,7 +136,7 @@ endif ()
 # Zstd
 
 if (NOT "${ZSTD_HOME}" STREQUAL "")
-  find_package (zstd REQUIRED)
+  find_package (ZSTD REQUIRED)
   set(ZSTD_VENDORED FALSE)
 else ()
   set(ZSTD_HOME "${THIRDPARTY_DIR}/zstd_ep-install")