summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorH. Joe Lee <hyoklee@hdfgroup.org>2022-08-25 11:25:43 -0500
committerGitHub <noreply@github.com>2022-08-25 09:25:43 -0700
commitc8f8b6957d0427d9228dde4fe8cbb07448c1d95e (patch)
treeedb86234d8b2f9d98a290cd41a61923e14cbab2e /var
parent10ac24874b4f644207ef9515a5facc06e241e1f4 (diff)
downloadspack-c8f8b6957d0427d9228dde4fe8cbb07448c1d95e.tar.gz
spack-c8f8b6957d0427d9228dde4fe8cbb07448c1d95e.tar.bz2
spack-c8f8b6957d0427d9228dde4fe8cbb07448c1d95e.tar.xz
spack-c8f8b6957d0427d9228dde4fe8cbb07448c1d95e.zip
libfabric: Match main version. (#32342)
* Match main version. `develop` no loger exists. * Change develop to main.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libfabric/package.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/libfabric/package.py b/var/spack/repos/builtin/packages/libfabric/package.py
index e9561b5f53..9c944b115c 100644
--- a/var/spack/repos/builtin/packages/libfabric/package.py
+++ b/var/spack/repos/builtin/packages/libfabric/package.py
@@ -97,10 +97,10 @@ class Libfabric(AutotoolsPackage):
depends_on("psm", when="fabrics=psm")
depends_on("ucx", when="fabrics=mlx")
- depends_on("m4", when="@develop", type="build")
- depends_on("autoconf", when="@develop", type="build")
- depends_on("automake", when="@develop", type="build")
- depends_on("libtool", when="@develop", type="build")
+ depends_on("m4", when="@main", type="build")
+ depends_on("autoconf", when="@main", type="build")
+ depends_on("automake", when="@main", type="build")
+ depends_on("libtool", when="@main", type="build")
conflicts("@1.9.0", when="platform=darwin", msg="This distribution is missing critical files")
conflicts("fabrics=opx", when="@:1.14.99")
@@ -109,7 +109,7 @@ class Libfabric(AutotoolsPackage):
if self.run_tests:
env.prepend_path("PATH", self.prefix.bin)
- @when("@develop")
+ @when("@main")
def autoreconf(self, spec, prefix):
bash = which("bash")
bash("./autogen.sh")