aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@38c3d835-c875-442e-b0fe-21c19ce1d001>1999-10-24 11:36:36 +0000
committerallen <allen@38c3d835-c875-442e-b0fe-21c19ce1d001>1999-10-24 11:36:36 +0000
commit3fef89fa1280c4e5af8fb68e276fd1f7a84c242a (patch)
tree8375d31a2ffa1ec6dae41942655cde13e851f3e3 /src
parent3aa41187b549ff9a792d673e86efe5220848d73f (diff)
Changing way of deciding if IEEEIO is in thorn list
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOPanda/trunk@4 38c3d835-c875-442e-b0fe-21c19ce1d001
Diffstat (limited to 'src')
-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