summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Lee <lee218@llnl.gov>2021-09-21 04:40:59 -0700
committerGitHub <noreply@github.com>2021-09-21 07:40:59 -0400
commit05ca19d9d7a215b3da564fe60c7551cbb25d1671 (patch)
tree555bee2122cfb63a6a6268ab38d29cbf7f309f15
parenta32671382615bbb186d3e0e0e7f891bac481d371 (diff)
downloadspack-05ca19d9d7a215b3da564fe60c7551cbb25d1671.tar.gz
spack-05ca19d9d7a215b3da564fe60c7551cbb25d1671.tar.bz2
spack-05ca19d9d7a215b3da564fe60c7551cbb25d1671.tar.xz
spack-05ca19d9d7a215b3da564fe60c7551cbb25d1671.zip
fgfs: fix missing autotools depends_on (#26005)
* added build deps for fgfs * added build deps when building master branch
-rw-r--r--var/spack/repos/builtin/packages/fast-global-file-status/package.py4
-rw-r--r--var/spack/repos/builtin/packages/mount-point-attributes/package.py6
2 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/fast-global-file-status/package.py b/var/spack/repos/builtin/packages/fast-global-file-status/package.py
index 2c5e491b8c..2b27de484c 100644
--- a/var/spack/repos/builtin/packages/fast-global-file-status/package.py
+++ b/var/spack/repos/builtin/packages/fast-global-file-status/package.py
@@ -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
diff --git a/var/spack/repos/builtin/packages/mount-point-attributes/package.py b/var/spack/repos/builtin/packages/mount-point-attributes/package.py
index 18696e1f01..bb0d70e701 100644
--- a/var/spack/repos/builtin/packages/mount-point-attributes/package.py
+++ b/var/spack/repos/builtin/packages/mount-point-attributes/package.py
@@ -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')