From 1d4dc42a3f16efd7de574aa595bbd189ffb5ee60 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 27 Aug 2017 17:31:37 -0700 Subject: [PATCH] Fix poor error message on missing guile and make it fatal. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 515d08e77f..75e7ee981d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -270,7 +270,7 @@ ELSE() # look for guile 1.8 GNC_PKG_CHECK_MODULES (GUILE1 guile-1.8>=1.8.8 QUIET) IF (NOT GUILE1_FOUND) - MESSAGE (SEND_ERROR "Neither guile 1.8 nor guile 2.0 where find. Please set PKG_CONFIG_PATH one of these is found.") + MESSAGE (FATAL_ERROR "Neither guile 1.8 nor guile 2.0 were found GnuCash can't run without one of them. Ensure that one is installed and can be found with pgk-config.") ENDIF(NOT GUILE1_FOUND) SET(HAVE_GUILE1 TRUE)