From 2aaa37b129a06f9a5aa5e11612aae556846ce65a Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 19 Jun 2016 12:52:44 -0400 Subject: [PATCH] Fix cmake error messages for gcov/lcov/etc --- test/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 841b25ae..b6d757a5 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -14,9 +14,9 @@ if(enable-coverage) MESSAGE(FATAL_ERROR "gcov not found! Aborting...") endif() if(NOT LCOV_PATH) - MESSAGE(FATAL_ERROR "gcov not found! Aborting...") + MESSAGE(FATAL_ERROR "lcov not found! Aborting...") endif() if(NOT GENHTML_PATH) - MESSAGE(FATAL_ERROR "gcov not found! Aborting...") + MESSAGE(FATAL_ERROR "genhtml not found! Aborting...") endif() endif()