From: Viktor Szakats Date: Fri, 2 Aug 2024 13:05:35 +0000 (+0200) Subject: cmake: drop reference to undefined variable X-Git-Tag: curl-8_10_0~427 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6089c35d90580fbdaf9bfffb0f26335884048f7;p=thirdparty%2Fcurl.git cmake: drop reference to undefined variable Undefined since the initial commit adding CMake support. Closes #14358 --- diff --git a/CMake/Macros.cmake b/CMake/Macros.cmake index a8664baa4b..124a26c872 100644 --- a/CMake/Macros.cmake +++ b/CMake/Macros.cmake @@ -53,10 +53,10 @@ macro(curl_internal_test CURL_TEST) "${CURL_TEST_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT) if(${CURL_TEST}) - set(${CURL_TEST} 1 CACHE INTERNAL "Curl test ${FUNCTION}") + set(${CURL_TEST} 1 CACHE INTERNAL "Curl test") message(STATUS "Performing Test ${CURL_TEST} - Success") else() - set(${CURL_TEST} "" CACHE INTERNAL "Curl test ${FUNCTION}") + set(${CURL_TEST} "" CACHE INTERNAL "Curl test") message(STATUS "Performing Test ${CURL_TEST} - Failed") endif() endif()