Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfouca committed Jul 24, 2023
1 parent 33bfa2a commit 226053a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CIME/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ def _case_build_impl(
# the future there may be others -- so USE_PETSC will be true if
# ANY of those are true.

use_petsc = clm_use_petsc or mpaso_use_petsc
use_petsc = bool(clm_use_petsc) or bool(mpaso_use_petsc)
case.set_value("USE_PETSC", use_petsc)

# Set the overall USE_TRILINOS variable to TRUE if any of the
Expand Down

0 comments on commit 226053a

Please sign in to comment.