Skip to content

Commit 567e184

Browse files
authored
Merge pull request #642 from fvitt/tuvx_bld_fix
Fix issue with gmake args
2 parents 98ca7b1 + 90984c0 commit 567e184

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cime_config/buildexe

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def _main_func():
6464
skip_mediator = False
6565

6666
if ocn_model == 'mom':
67-
gmake_args += "USE_FMS=TRUE"
67+
gmake_args += " USE_FMS=TRUE"
6868

6969
if link_libs is not None:
70-
gmake_args += 'USER_SLIBS="{}"'.format(link_libs)
70+
gmake_args += ' USER_SLIBS="{}"'.format(link_libs)
7171

7272
comp_classes = case.get_values("COMP_CLASSES")
7373
for comp in comp_classes:

0 commit comments

Comments
 (0)