Skip to content

Commit

Permalink
Remove static propagation based on shared variant for sundials
Browse files Browse the repository at this point in the history
  • Loading branch information
chapman39 committed Jul 19, 2024
1 parent 224504d commit 6768ac9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/spack/packages/serac/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,9 @@ class Serac(CachedCMakePackage, CudaPackage):
depends_on("{0}+shared".format(dep), when="+shared")
depends_on("{0}~shared".format(dep), when="~shared")

# MFEM and sundials have a static variant
# MFEM has a static variant
depends_on("{0}+static".format("mfem"), when="~shared")
depends_on("{0}~static".format("mfem"), when="+shared")
depends_on("{0}+static".format("sundials"), when="+sundials~shared")
depends_on("{0}~static".format("sundials"), when="+sundials+shared")

#
# Conflicts
Expand Down

0 comments on commit 6768ac9

Please sign in to comment.