Skip to content

Commit

Permalink
Merge pull request #1225 from ESMCI/jgfouca/fix_build_msg
Browse files Browse the repository at this point in the history
Fix build model message

Test suite: None (minor change)
Test baseline:
Test namelist changes:
Test status: bit for bit

Fixes #1223

User interface changes?: None

Code review: @jedwards4b @jayeshkrishna
  • Loading branch information
jgfouca authored Mar 10, 2017
2 parents 5f4f989 + 9a38ff8 commit dc0a87c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/lib/CIME/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _build_model(build_threaded, exeroot, clm_config_opts, incroot, complist,
continue

# special case for clm
# clm 4_0 is not a shared library and must be built here
# clm 4_0 is not a shared (as in sharedlibs, shared by all tests) library and must be built here
# clm 4_5 and newer is a shared library (but not in ACME) and should be built in build_libraries
if get_model() != "acme":
if comp == "clm":
Expand All @@ -38,7 +38,7 @@ def _build_model(build_threaded, exeroot, clm_config_opts, incroot, complist,
else:
continue
else:
logger.info(" - Building clm Library ")
logger.info(" - Building %s Library " % model)

smp = nthrds > 1 or build_threaded

Expand Down

0 comments on commit dc0a87c

Please sign in to comment.