From 18b6b4c5666e2e1bdbbe52a0f374ff7a6623157b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Kvalsvk?= Date: Tue, 16 Sep 2014 11:37:06 +0000 Subject: [PATCH] Fixes status message when PETSc couldn't be found. --- cmake/Modules/FindPetsc.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/FindPetsc.cmake b/cmake/Modules/FindPetsc.cmake index 87ba3c20..ab45ffb5 100644 --- a/cmake/Modules/FindPetsc.cmake +++ b/cmake/Modules/FindPetsc.cmake @@ -96,7 +96,7 @@ if (NOT PETSC_LIBRARY) ) endif() if(NOT PETSC_LIBRARY) - message(STATUS "Directory with the SuperLU library not found") + message(STATUS "Could not find the PETSc library") return() endif() list(APPEND CMAKE_REQUIRED_LIBRARIES "${PETSC_LIBRARY}")