argobots: consistently use 'master' (#13965)

Commit 71cd91e4 changed "latest from git" to 'master' from former
'develop'.  Build dependencies still pointed to @develop, though
This commit is contained in:
Rob Latham 2019-12-03 12:09:15 -06:00 committed by Adam J. Stewart
parent 5ddf5e2e7b
commit c7dbb4f103

View File

@ -28,10 +28,10 @@ class Argobots(AutotoolsPackage):
variant("valgrind", default=False, description="Enable Valgrind") variant("valgrind", default=False, description="Enable Valgrind")
depends_on("m4", type=("build"), when="@develop") depends_on("m4", type=("build"), when="@master")
depends_on("autoconf", type=("build"), when="@develop") depends_on("autoconf", type=("build"), when="@master")
depends_on("automake", type=("build"), when="@develop") depends_on("automake", type=("build"), when="@master")
depends_on("libtool", type=("build"), when="@develop") depends_on("libtool", type=("build"), when="@master")
depends_on("valgrind", when="+valgrind") depends_on("valgrind", when="+valgrind")
def configure_args(self): def configure_args(self):