From 8a4ac74c4020a7e554722bd1ac96d2d9fe761ca9 Mon Sep 17 00:00:00 2001 From: Cody Balos Date: Wed, 19 Jun 2024 13:05:58 -0700 Subject: [PATCH] typo --- cmake/macros/SundialsAddLibrary.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/macros/SundialsAddLibrary.cmake b/cmake/macros/SundialsAddLibrary.cmake index 3b276ef155..5e5b73bbd4 100644 --- a/cmake/macros/SundialsAddLibrary.cmake +++ b/cmake/macros/SundialsAddLibrary.cmake @@ -173,9 +173,9 @@ macro(sundials_add_library target) else() set(_all_libs ${sundials_add_library_LINK_LIBRARIES}) endif() - # Due to various issues in CMake, particularly https://gitlab.kitware.com/cmake/cmake/-/issues/25365 - # we create a fake custom target to enforce a build order. Without this, parallel - # builds might fail due with a missing '.mod' error when Fortran is enabled. + # Due to various issues in CMake, particularly https://gitlab.kitware.com/cmake/cmake/-/issues/25365, + # we create a fake custom target to enforce a build order. Without this, parallel builds + # might fail with an error about a missing '.mod' file when Fortran is enabled (see GitHub #410). add_custom_target(fake_to_force_build_order_${obj_target}) set(_stripped_all_libs ${_all_libs}) list(FILTER _stripped_all_libs EXCLUDE REGEX "PUBLIC|INTERFACE|PRIVATE")