Skip to content
Snippets Groups Projects
Commit 862b6d93 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[bugfix][autotools] Fix broken --without-parmetis.

This fixes FS#1404.
parent ccb09bea
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,8 @@ AC_DEFUN([DUNE_PATH_PARMETIS],[
AC_MSG_RESULT(yes)
else
if test -n "$PARMETIS" ; then
AC_MSG_ERROR(no)
if test -n "$PARMETIS" && test "$PARMETIS" != "no" ; then
AC_MSG_ERROR(ParMETIS was part of the configure call but could not be found in $PARMETIS)
else
AC_MSG_RESULT(no)
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment