diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/flex/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/glib/package.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/flex/package.py b/var/spack/repos/builtin/packages/flex/package.py index 0314950140..8f0c46bc56 100644 --- a/var/spack/repos/builtin/packages/flex/package.py +++ b/var/spack/repos/builtin/packages/flex/package.py @@ -44,7 +44,7 @@ class Flex(AutotoolsPackage): depends_on('help2man', type='build') # Older tarballs don't come with a configure script - depends_on('m4', type='build', when='@:2.6.0') + depends_on('m4', type='build') depends_on('autoconf', type='build', when='@:2.6.0') depends_on('automake', type='build', when='@:2.6.0') depends_on('libtool', type='build', when='@:2.6.0') diff --git a/var/spack/repos/builtin/packages/glib/package.py b/var/spack/repos/builtin/packages/glib/package.py index e2eb984876..cede9ae0ae 100644 --- a/var/spack/repos/builtin/packages/glib/package.py +++ b/var/spack/repos/builtin/packages/glib/package.py @@ -41,6 +41,7 @@ class Glib(AutotoolsPackage): depends_on('autoconf', type='build') depends_on('automake', type='build') depends_on('libtool', type='build') + depends_on('m4', type='build') depends_on('pkg-config+internal_glib', type='build') depends_on('libffi') depends_on('zlib') |