libfabric: Match main version. (#32342)

* Match main version.

`develop` no loger exists.

* Change develop to main.
This commit is contained in:
H. Joe Lee 2022-08-25 11:25:43 -05:00 committed by GitHub
parent 10ac24874b
commit c8f8b6957d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 @@ def setup_build_environment(self, env):
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")