You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@orc.apache.org by majetideepak <gi...@git.apache.org> on 2017/12/21 12:50:10 UTC

[GitHub] orc pull request #204: ORC-283: Enable the cmake build to pick specified pat...

Github user majetideepak commented on a diff in the pull request:

    https://github.com/apache/orc/pull/204#discussion_r158269151
  
    --- Diff: cmake_modules/FindGTest.cmake ---
    @@ -28,7 +28,7 @@ find_path (GTEST_INCLUDE_DIR gmock/gmock.h HINTS
       NO_DEFAULT_PATH
       PATH_SUFFIXES "include")
     
    -find_library (GTEST_LIBRARIES NAMES gmock PATHS
    +find_library (GTEST_LIBRARIES NAMES gmock HINTS
    --- End diff --
    
    `HINTS` is apt here. `PATHS` must only be used for hardcoded guesses.
    https://cmake.org/cmake/help/v3.0/command/find_library.html


---