From: Wolfgang Bangerth Date: Tue, 9 Apr 2013 15:02:48 +0000 (+0000) Subject: Fix one more instance of an outdated error message. X-Git-Tag: v8.0.0~753 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90a46b6c64276a8538006a8a4b88751585e4da9b;p=dealii.git Fix one more instance of an outdated error message. git-svn-id: https://svn.dealii.org/trunk@29225 0785d39b-7218-0410-832d-ea1e28bc413d --- 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.")); }