From 07aeef0f9f10d928b614214c1c8b38af0eecc6d4 Mon Sep 17 00:00:00 2001 From: "Roscoe A. Bartlett" Date: Mon, 12 Dec 2022 19:20:48 -0700 Subject: [PATCH] Remove assert of local matches cache export var (#551) Turns out this is the wrong assert to do. For now just commenting out tribits_assert_cache_and_local_vars_same_value() and will decide how to fix this for real later. --- tribits/core/package_arch/TribitsPkgExportCacheVars.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tribits/core/package_arch/TribitsPkgExportCacheVars.cmake b/tribits/core/package_arch/TribitsPkgExportCacheVars.cmake index 6fb85e0ef..9380cebe1 100644 --- a/tribits/core/package_arch/TribitsPkgExportCacheVars.cmake +++ b/tribits/core/package_arch/TribitsPkgExportCacheVars.cmake @@ -122,7 +122,7 @@ function(tribits_pkg_append_set_commands_for_exported_vars packageName endforeach() endif() foreach(exportedCacheVar IN LISTS ${packageName}_PKG_VARS_TO_EXPORT) - tribits_assert_cache_and_local_vars_same_value(${exportedCacheVar}) + #tribits_assert_cache_and_local_vars_same_value(${exportedCacheVar}) string(APPEND configFileStr "set(${exportedCacheVar} \"${${exportedCacheVar}}\")\n") endforeach()