aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/make.configuration.defn17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 64d3f73..448649e 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -2,20 +2,19 @@
# make sure that IOPanda was configured in with MPI and IEEEIO
-ifeq ($(strip $(HAVE_IEEEIO)), )
-$(NAME): MissingIEEEIO
-.pseudo: MissingIEEEIO
-MissingIEEEIO:
+ifeq ($(findstring external/IEEEIO,$(THORNS)),)
+.pseudo: MissingIEEEIOinIOPanda
+MissingIEEEIOinIOPanda:
@echo "IOPanda: requires IEEEIO"
- @echo "IOPanda: Please configure Cactus with thorn external/IEEEIO or remove IOPanda from Thornlist !"
+ @echo "IOPanda: Please add external/IEEEIO or remove IOPanda from Thornlist !"
exit 2
endif
ifeq ($(strip $(MPI_LIBS)), )
-$(NAME): MissingMPI
-.pseudo: MissingMPI
-MissingMPI:
+$(NAME): MissingMPIinIOPanda
+.pseudo: MissingMPIinIOPanda
+MissingMPIinIOPanda:
@echo "IOPanda: requires MPI"
- @echo "IOPanda: Please configure Cactus with MPI or remove IOPanda from Thornlist !"
+ @echo "IOPanda: Please configure with MPI or remove IOPanda from Thornlist !"
exit 2
endif