diff options
author | Paul Ferrell <51765748+Paul-Ferrell@users.noreply.github.com> | 2024-09-08 23:26:20 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 07:26:20 +0200 |
commit | 4c6b3ccb409b838afc442e98a6a5552d81bda0fc (patch) | |
tree | 57b1e38807066858d68ddcf3e52301048b101ce2 /var | |
parent | 1d9c8a90344237a9b0a8e87cbb1a0272df7a3f42 (diff) | |
download | spack-4c6b3ccb409b838afc442e98a6a5552d81bda0fc.tar.gz spack-4c6b3ccb409b838afc442e98a6a5552d81bda0fc.tar.bz2 spack-4c6b3ccb409b838afc442e98a6a5552d81bda0fc.tar.xz spack-4c6b3ccb409b838afc442e98a6a5552d81bda0fc.zip |
charliecloud: fix libsquashfuse dependency type (#46189)
Should have been a link depenedency, not a build dependency.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/charliecloud/package.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/charliecloud/package.py b/var/spack/repos/builtin/packages/charliecloud/package.py index 2f4497ac18..3d2b4dabc3 100644 --- a/var/spack/repos/builtin/packages/charliecloud/package.py +++ b/var/spack/repos/builtin/packages/charliecloud/package.py @@ -150,9 +150,9 @@ class Charliecloud(AutotoolsPackage): with when("+squashfuse"): depends_on("libfuse@3:", type=("build", "run", "link"), when="@0.32:") depends_on("pkgconfig", type="build", when="@0.37:") - depends_on("squashfuse@0.1.105:0.2.0,0.4.0:", type="build", when="@0.36:") - depends_on("squashfuse@0.1.105:0.2.0,0.4.0", type="build", when="@0.35") - depends_on("squashfuse@0.1.105", type="build", when="@0.32:0.34") + depends_on("squashfuse@0.1.105:0.2.0,0.4.0:", type="link", when="@0.36:") + depends_on("squashfuse@0.1.105:0.2.0,0.4.0", type="link", when="@0.35") + depends_on("squashfuse@0.1.105", type="link", when="@0.32:0.34") def autoreconf(self, spec, prefix): which("bash")("autogen.sh") |