From 2f12a6bdbd53a6800c827f8c2138393f588ef281 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 24 Oct 2010 22:52:31 +0000 Subject: [PATCH] Only run MPI directory if we have configured for both MPI and P4EST. git-svn-id: https://svn.dealii.org/trunk@22467 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 9df67e6783..d93a955daa 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -17,13 +17,13 @@ nofail-dirs = a-framework \ aniso \ codim_one \ serialization \ - $(shell if test "$(DEAL_II_USE_MPI)" = yes ; then echo mpi ; fi) \ - $(shell if test "$(USE_CONTRIB_P4EST)" = yes ; then echo distributed_grids ; fi) \ - $(shell if test "$(USE_CONTRIB_PETSC)" = yes ; then echo petsc ; fi) \ - $(shell if test "$(USE_CONTRIB_TRILINOS)" = yes ; then echo trilinos ; fi) \ - $(shell if test "$(USE_CONTRIB_UMFPACK)" = yes ; then echo umfpack ; fi) \ - $(shell if test "$(USE_CONTRIB_METIS)" = yes ; then echo metis ; fi) \ - $(shell if test "$(USE_CONTRIB_HSL)" = yes ; then echo hsl ; fi) \ + $(if $(DEAL_II_USE_MPI:no=), $(if $(USE_CONTRIB_P4EST:no=),mpi,),) \ + $(if $(USE_CONTRIB_P4EST:no=), distributed_grids,) \ + $(if $(USE_CONTRIB_PETSC:no=), petsc,) \ + $(if $(USE_CONTRIB_TRILINOS:no=), trilinos,) \ + $(if $(USE_CONTRIB_UMFPACK:no=), umfpack,) \ + $(if $(USE_CONTRIB_METIS:no=), metis,) \ + $(if $(USE_CONTRIB_HSL:no=), hsl,) \ $(shell if grep -q 'define HAVE_LIBLAPACK' $D/base/include/base/config.h ;\ then echo lapack ; fi) -- 2.39.5