From 1109dc43786fa3bacd84d6a368571ebd43adab1f Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 20 Sep 2010 14:30:17 +0000 Subject: [PATCH] Fix apparently wrong (!?) conditional... git-svn-id: https://svn.dealii.org/trunk@22082 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/base/Makefile b/tests/base/Makefile index 7e610285db..bdb94d50bb 100644 --- a/tests/base/Makefile +++ b/tests/base/Makefile @@ -60,7 +60,7 @@ task_%/output : task_%/exe # all .cc-files are tests, though the test bdm.cc appears to be dysfunctional # and we don't want the data_out_base_tecplot_bin test if we haven't found the # corresponding libraries: -ifneq (tecio, $(findstring tecio, $LIBS)) +ifeq (, $(findstring tecio, $LIBS)) tests = $(filter-out bdm data_out_base_tecplot_bin, $(basename $(wildcard *))) else tests = $(filter-out bdm, $(basename $(wildcard *))) -- 2.39.5