Skip to content

Commit

Permalink
Fix firedrake-update (#3354)
Browse files Browse the repository at this point in the history
  • Loading branch information
JDBetteridge authored Jan 25, 2024
1 parent afc5871 commit a8cf14a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/firedrake-install
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ def build_and_install_libsupermesh():
"-DMPI_CXX_COMPILER=" + cxx,
"-DMPI_Fortran_COMPILER=" + f90,
"-DCMAKE_Fortran_COMPILER=" + f90,
"-DMPIEXEC_EXECUTABLE=" + args.mpiexec,
"-DMPIEXEC_EXECUTABLE=" + mpiexec,
]
check_call(cmd)
check_call(["make"])
Expand Down Expand Up @@ -1759,6 +1759,7 @@ if mode == "install":
cc = options["mpicc"]
cxx = options["mpicxx"]
f90 = options["mpif90"]
mpiexec = options["mpiexec"]
compiler_env = create_compiler_env(cc, cxx, f90)
os.chdir(firedrake_env)

Expand Down

0 comments on commit a8cf14a

Please sign in to comment.