summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Festi <ffesti@redhat.com>2023-04-03 14:20:44 +0200
committerFlorian Festi <ffesti@redhat.com>2023-04-03 14:20:44 +0200
commitcd7736833e36f6088dd49fcbcc3d9e6a7aa6e954 (patch)
tree0a2e7e53ebb1e979a20d7fd14139d63bf4a69c86
parenta5bd7571358c7974da1c909e331525b13dce1264 (diff)
downloadrpm-cd7736833e36f6088dd49fcbcc3d9e6a7aa6e954.tar.gz
Fix typo in cmake rule
that breaks the OpenSSL build of the interenal PGP parser
-rw-r--r--rpmio/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/CMakeLists.txt b/rpmio/CMakeLists.txt
index f26575cb8..2fb5794b0 100644
--- a/rpmio/CMakeLists.txt
+++ b/rpmio/CMakeLists.txt
@@ -14,7 +14,7 @@ if (WITH_INTERNAL_OPENPGP)
if (WITH_OPENSSL)
find_package(OpenSSL 1.0.2 REQUIRED)
target_sources(librpmio PRIVATE digest_openssl.c)
- target_link_libraries(librpmio PRIVATE OpenSSL:Crypto)
+ target_link_libraries(librpmio PRIVATE OpenSSL::Crypto)
else()
pkg_check_modules(LIBGCRYPT REQUIRED IMPORTED_TARGET libgcrypt)
target_sources(librpmio PRIVATE digest_libgcrypt.c)