From c224d6b99345abf418c4e0695ab836d67eb53955 Mon Sep 17 00:00:00 2001 From: Tom Tan Date: Thu, 8 May 2025 11:52:39 -0700 Subject: [PATCH] [BUILD] Fix typo in find-package-support-functions.cmake for third_party dependencies --- cmake/find-package-support-functions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/find-package-support-functions.cmake b/cmake/find-package-support-functions.cmake index 5cb9f99443..d788637ccd 100644 --- a/cmake/find-package-support-functions.cmake +++ b/cmake/find-package-support-functions.cmake @@ -130,7 +130,7 @@ endfunction() # Function to get all supported third party dependencies #------------------------------------------------------------------------- function(get_supported_third_party_dependencies dependencies_out) - set(${dependencies_out} ${THIRD_PARTY_DEPNDENCIES_SUPPORTED} PARENT_SCOPE) + set(${dependencies_out} ${THIRD_PARTY_DEPENDENCIES_SUPPORTED} PARENT_SCOPE) endfunction() #-------------------------------------------------------------------------