From dc133c822a3d5e930f3ff1c1a708ef3c3c212de0 Mon Sep 17 00:00:00 2001 From: Fuzzbawls Date: Sat, 19 Oct 2024 15:49:13 -0700 Subject: [PATCH] [CMake] Fix typo in FindMiniupnp.cmake Fixes a CMake warning regarding package naming mismatch. No functional change. --- contrib/cmake/FindMiniupnp.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/cmake/FindMiniupnp.cmake b/contrib/cmake/FindMiniupnp.cmake index 4e2d4418605ce..994abb67cd48e 100644 --- a/contrib/cmake/FindMiniupnp.cmake +++ b/contrib/cmake/FindMiniupnp.cmake @@ -20,7 +20,7 @@ endif() include(FindPackageHandleStandardArgs) find_package_handle_standard_args( - Miniupnpc DEFAULT_MSG + Miniupnp DEFAULT_MSG MINIUPNP_INCLUDE_DIR MINIUPNP_LIBRARY ) @@ -31,11 +31,11 @@ if(MINIUPNP_FOUND) set(MINIUPNPC_API_VERSION "${CMAKE_MATCH_1}") if (${MINIUPNPC_API_VERSION} GREATER "10" OR ${MINIUPNPC_API_VERSION} EQUAL "10") if(NOT Miniupnp_FIND_QUIETLY) - message(STATUS "Found Miniupnpc API version " ${MINIUPNPC_API_VERSION}) + message(STATUS "Found Miniupnp API version " ${MINIUPNPC_API_VERSION}) endif() set(MINIUPNP_FOUND true) else() - message(FATAL_ERROR "Unsupported Miniupnpc version!") + message(FATAL_ERROR "Unsupported Miniupnp version!") endif() endif() else()