# HG changeset patch # User Petter Tomner # Date 1635193659 -7200 # Node ID aaac4d16af9e00419eb60355a5a57eff7f89644a # Parent f22347a87b897c2c365195e09a44d1ae2aed8175 build: Correct error message for incompatible CXSparse (bug #61385). * configure.ac: Replace "--disable-cxsparse" with "--without-cxsparse" in error message. diff -r f22347a87b89 -r aaac4d16af9e configure.ac --- a/configure.ac Tue Oct 19 15:49:23 2021 -0400 +++ b/configure.ac Mon Oct 25 22:27:39 2021 +0200 @@ -2146,7 +2146,7 @@ if test $octave_cv_lib_cxsparse = yes; then OCTAVE_CHECK_CXSPARSE_VERSION_OK if test $octave_cv_cxsparse_version_ok = no; then - AC_MSG_ERROR([CXSparse library is too old (< version 2.2). Upgrade CXSparse (SuiteSparse) or configure Octave with --disable-cxsparse"]) + AC_MSG_ERROR([CXSparse library is too old (< version 2.2). Upgrade CXSparse (SuiteSparse) or configure Octave with --without-cxsparse"]) fi fi fi