mumps: Fix compile commands. (#13497)

This commit is contained in:
t-karatsu 2019-10-30 13:08:25 +09:00 committed by Adam J. Stewart
parent 7af668f452
commit ad6908e35d

View File

@ -177,9 +177,9 @@ def write_makefile_inc(self):
"MUMPS_TYPE = par"]) "MUMPS_TYPE = par"])
else: else:
makefile_conf.extend( makefile_conf.extend(
["CC = cc", ["CC = {0}".format(spack_cc),
"FC = fc", "FC = {0}".format(spack_fc),
"FL = fc", "FL = {0}".format(spack_fc),
"MUMPS_TYPE = seq"]) "MUMPS_TYPE = seq"])
# TODO: change the value to the correct one according to the # TODO: change the value to the correct one according to the