Skip to content

Commit 95229dd

Browse files
committed
Change error to exit
1 parent 24a86b9 commit 95229dd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

mpi-proxy-split/mpi-wrappers/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ mpi_unimplemented_wrappers.cpp: generate-mpi-unimplemented-wrappers.py \
6262
python3 generate-mpi-unimplemented-wrappers.py mpi_unimplemented_wrappers_openmpi.txt > $@; \
6363
elif mpiexec -h | grep -q 'ExaMPI'; then \
6464
python3 generate-mpi-unimplemented-wrappers.py mpi_unimplemented_wrappers_exampi.txt > $@; \
65-
else \
66-
$(error Could not identify the MPICH flavor); \
65+
else \
66+
echo 'Could not identify the MPICH flavor'; \
67+
exit 1; \
6768
fi
6869

6970
.c.o:

0 commit comments

Comments
 (0)