Repository: orc Updated Branches: refs/heads/master 9d8de273c -> 360a2af98
ORC-396: also look for LZ4 libs in lib64 subdir Fixes #302 Signed-off-by: Deepak Majeti <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/orc/repo Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/360a2af9 Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/360a2af9 Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/360a2af9 Branch: refs/heads/master Commit: 360a2af9885bddcd2ffa857e0454816c40b8eca4 Parents: 9d8de27 Author: Tim Armstrong <[email protected]> Authored: Wed Aug 15 11:44:37 2018 -0700 Committer: Deepak Majeti <[email protected]> Committed: Sun Aug 19 18:13:36 2018 -0400 ---------------------------------------------------------------------- cmake_modules/FindLZ4.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/orc/blob/360a2af9/cmake_modules/FindLZ4.cmake ---------------------------------------------------------------------- diff --git a/cmake_modules/FindLZ4.cmake b/cmake_modules/FindLZ4.cmake index 581ebcb..e522a6f 100644 --- a/cmake_modules/FindLZ4.cmake +++ b/cmake_modules/FindLZ4.cmake @@ -30,7 +30,7 @@ find_path (LZ4_INCLUDE_DIR lz4.h HINTS find_library (LZ4_LIBRARIES NAMES lz4 HINTS ${_lz4_path} - PATH_SUFFIXES "lib") + PATH_SUFFIXES "lib" "lib64") if (LZ4_INCLUDE_DIR AND LZ4_LIBRARIES) set (LZ4_FOUND TRUE)
