From 045b5eea098fdc3464d1cff2e400d44843b0546c Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 9 Apr 2013 15:02:48 +0000 Subject: [PATCH] Fix one more instance of an outdated error message. git-svn-id: https://svn.dealii.org/trunk@29225 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/lac/sparse_direct.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/source/lac/sparse_direct.cc b/deal.II/source/lac/sparse_direct.cc index 1328eb20ce..8099df44d3 100644 --- a/deal.II/source/lac/sparse_direct.cc +++ b/deal.II/source/lac/sparse_direct.cc @@ -344,7 +344,7 @@ SparseDirectUMFPACK::clear () template void SparseDirectUMFPACK::factorize (const Matrix &) { - AssertThrow(false, ExcMessage("To call this function you need UMFPACK, but you called ./configure without the necessary --with-umfpack switch.")); + AssertThrow(false, ExcMessage("To call this function you need UMFPACK, but configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); } -- 2.39.5