From 9e16470be6ab815e9db9f301760848bb5492dd43 Mon Sep 17 00:00:00 2001 From: degomme Date: Tue, 3 Apr 2018 23:02:06 +0200 Subject: [PATCH 1/1] fix dependency issue to prevent problems with make -jx --- teshsuite/smpi/mpich3-test/f90/util/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teshsuite/smpi/mpich3-test/f90/util/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f90/util/CMakeLists.txt index a488dabd7e..6f38ae4c5c 100644 --- a/teshsuite/smpi/mpich3-test/f90/util/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f90/util/CMakeLists.txt @@ -10,6 +10,8 @@ if(enable_smpi AND enable_smpi_MPICH3_testsuite AND SMPI_FORTRAN) #F90 version of the mtest library add_library(mtest_f90 STATIC ../util/mtestf90.f90) + #fake dependency, to ensure mpi.mod is generated properly before + target_link_libraries(mtest_f90 mpi) endif() set(txt_files -- 2.20.1