]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cmake: drop reference to undefined variable
authorViktor Szakats <commit@vsz.me>
Fri, 2 Aug 2024 13:05:35 +0000 (15:05 +0200)
committerViktor Szakats <commit@vsz.me>
Fri, 2 Aug 2024 23:21:23 +0000 (01:21 +0200)
Undefined since the initial commit adding CMake support.

Closes #14358

CMake/Macros.cmake

index a8664baa4b1f6b36d47f142362330721235a01ed..124a26c8721a9fdbb713982ef18d9c73bbafd7d9 100644 (file)
@@ -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()