diff options
author | sknigh <sknigh@sandia.gov> | 2017-02-03 17:19:23 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-02-03 17:19:23 -0800 |
commit | 24553c12bbce5fcd5e1a73581a823cdd5fe319f6 (patch) | |
tree | 41843cbe6c78695780c0ada5c08efc4fcafc805f | |
parent | c456dfb60fdcd24448140278f29f0e9d1de95800 (diff) | |
download | spack-24553c12bbce5fcd5e1a73581a823cdd5fe319f6.tar.gz spack-24553c12bbce5fcd5e1a73581a823cdd5fe319f6.tar.bz2 spack-24553c12bbce5fcd5e1a73581a823cdd5fe319f6.tar.xz spack-24553c12bbce5fcd5e1a73581a823cdd5fe319f6.zip |
Flex and Glib builds are dependent on m4 (#3022)
-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') |