Skip to content

Commit

Permalink
access-om2: pass type to depends_on() (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshula committed Jul 8, 2024
1 parent f30cf04 commit 11bc73e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/access-om2/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ class AccessOm2(BundlePackage):

variant("deterministic", default=False, description="Deterministic build.")

depends_on("libaccessom2+deterministic", when="+deterministic")
depends_on("libaccessom2~deterministic", when="~deterministic")
depends_on("cice5+deterministic", when="+deterministic")
depends_on("cice5~deterministic", when="~deterministic")
depends_on("mom5+deterministic", when="+deterministic")
depends_on("mom5~deterministic", when="~deterministic")
depends_on("libaccessom2+deterministic", when="+deterministic", type="run")
depends_on("libaccessom2~deterministic", when="~deterministic", type="run")
depends_on("cice5+deterministic", when="+deterministic", type="run")
depends_on("cice5~deterministic", when="~deterministic", type="run")
depends_on("mom5+deterministic", when="+deterministic", type="run")
depends_on("mom5~deterministic", when="~deterministic", type="run")

# There is no need for install() since there is no code.

0 comments on commit 11bc73e

Please sign in to comment.