From c84a9021f019b23ccd747018bceddb050345bb44 Mon Sep 17 00:00:00 2001 From: "H. Joe Lee" Date: Fri, 29 Mar 2024 17:39:33 -0500 Subject: [PATCH] chore: improve error message (#4287) close #192 --- config/cmake/FindMFU.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cmake/FindMFU.cmake b/config/cmake/FindMFU.cmake index 2a4278a1af6..8bbc870f5f8 100644 --- a/config/cmake/FindMFU.cmake +++ b/config/cmake/FindMFU.cmake @@ -92,7 +92,7 @@ if (NOT MFU_FOUND) message (VERBOSE "${MFU_DIR_MESSAGE}") else () if (MFU_FIND_REQUIRED) - message (FATAL_ERROR "Mfu was NOT found and is Required by this project") + message (FATAL_ERROR "MFU was NOT found and is required.") endif () endif () endif ()