From 05ca19d9d7a215b3da564fe60c7551cbb25d1671 Mon Sep 17 00:00:00 2001 From: Gregory Lee Date: Tue, 21 Sep 2021 04:40:59 -0700 Subject: fgfs: fix missing autotools depends_on (#26005) * added build deps for fgfs * added build deps when building master branch --- var/spack/repos/builtin/packages/fast-global-file-status/package.py | 4 +++- var/spack/repos/builtin/packages/mount-point-attributes/package.py | 6 +++--- 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') -- cgit v1.2.3-60-g2f50