Skip to content

Commit

Permalink
Update pkcs11 module for red hat distros (#2430)
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Barro <miguelbarro@eprosima.com>
  • Loading branch information
MiguelBarro authored Jan 27, 2022
1 parent 94f9ed8 commit 6d569ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/modules/FindLibP11.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ else()
endif()

find_path(LIBP11_INCLUDE_DIR NAMES libp11.h HINTS ${LibP11_ROOT})
find_library(LIBP11_LIBRARY NAMES libp11.a libp11.lib HINTS ${LibP11_ROOT})
find_library(LIBP11_LIBRARY NAMES libp11.a libp11.so libp11.lib HINTS ${LibP11_ROOT})

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(LibP11 DEFAULT_MSG LIBP11_LIBRARY LIBP11_INCLUDE_DIR)
Expand Down
2 changes: 1 addition & 1 deletion test/blackbox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ if(NOT LibP11_FOUND)
if(GTEST_INDIVIDUAL)
set(pkcs_filter "[Pp][Kk][Cc][Ss]")
else()
set(pkcs_filter "-*pcks*")
set(pkcs_filter "-*pkcs*")
endif() # GTEST_INDIVIDUAL
endif() # LibP11_FOUND

Expand Down

0 comments on commit 6d569ad

Please sign in to comment.