fgfs: fix missing autotools depends_on (#26005)
* added build deps for fgfs * added build deps when building master branch
This commit is contained in:
parent
a326713826
commit
05ca19d9d7
2 changed files with 6 additions and 4 deletions
|
@ -25,7 +25,9 @@ class FastGlobalFileStatus(AutotoolsPackage):
|
|||
depends_on('mpi')
|
||||
depends_on('openssl')
|
||||
depends_on('elf')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('autoconf', type='build', when='@master')
|
||||
depends_on('automake', type='build', when='@master')
|
||||
depends_on('libtool', type='build', when='@master')
|
||||
|
||||
def configure_args(self):
|
||||
spec = self.spec
|
||||
|
|
|
@ -19,8 +19,8 @@ class MountPointAttributes(AutotoolsPackage):
|
|||
version('1.1.1', sha256='397de583a99e60aae8b4485d3decac6e23f50c658a6353fea149d6dd50d3ecee', url="https://github.com/LLNL/MountPointAttributes/releases/download/v1.1.1/mountpointattr-1.1.1.tar.gz")
|
||||
version('1.1', sha256='bff84c75c47b74ea09b6cff949dd699b185ddba0463cb1ff39ab138003c96e02')
|
||||
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('automake', type='build')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('autoconf', type='build', when='@master')
|
||||
depends_on('automake', type='build', when='@master')
|
||||
depends_on('libtool', type='build', when='@master')
|
||||
|
||||
patch('mpa_type_conversion.patch', when='@1.1')
|
||||
|
|
Loading…
Reference in a new issue