Explicitly group conditions

For some reason I was unable to produce correct criteria without
inserting explicit parentheses.  I don't know why that is, but
better safe than sorry.
This commit is contained in:
Bård Skaflestad 2014-04-07 19:28:06 +02:00
parent a154887a2b
commit 1fca44fb03

View File

@ -71,11 +71,11 @@ macro (sources_hook)
)
endif (NOT SuiteSparse_FOUND)
if (NOT MPI_FOUND OR NOT DUNE_ISTL_FOUND)
if ((NOT MPI_FOUND) OR (NOT DUNE_ISTL_FOUND))
list (REMOVE_ITEM tests_SOURCES
${PROJECT_SOURCE_DIR}/tests/test_parallel_linearsolver.cpp
)
endif (NOT MPI_FOUND OR NOT DUNE_ISTL_FOUND)
endif ((NOT MPI_FOUND) OR (NOT DUNE_ISTL_FOUND))
# we are not supposed to include the TinyXML test prog. regardless
list (REMOVE_ITEM opm-core_SOURCES