From 67007de3a256b34bd6ebcf3b119ecff16ebc239d Mon Sep 17 00:00:00 2001
From: Ben Boeckel <ben.boeckel@kitware.com>
Date: Wed, 18 May 2022 21:09:19 -0400
Subject: [PATCH] cmake: fix Catalyst module requests

The wrong variable name was used when requesting the module.
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 28f40b6f389..06b761d0d4c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -211,7 +211,7 @@ if (VTK_ENABLE_LOGGING)
     "via `VTK_ENABLE_LOGGING`")
 endif ()
 if (VTK_ENABLE_CATALYST)
-  list(APPEND vtk_request_modules
+  list(APPEND vtk_requested_modules
     VTK::IOCatalystConduit)
 else()
   list(APPEND vtk_rejected_modules
-- 
GitLab