diff options
author | sknigh <sknigh@sandia.gov> | 2019-11-12 10:01:15 -0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-11-12 12:01:15 -0600 |
commit | 1ae824737efd90b62a6d3f668a87d6c1bc169664 (patch) | |
tree | b3e014ab67e95aa3d583b5c8d431ab9f57c8b858 | |
parent | 2b6c4245d0bc38e5465e8855992e813906b0f2c0 (diff) | |
download | spack-1ae824737efd90b62a6d3f668a87d6c1bc169664.tar.gz spack-1ae824737efd90b62a6d3f668a87d6c1bc169664.tar.bz2 spack-1ae824737efd90b62a6d3f668a87d6c1bc169664.tar.xz spack-1ae824737efd90b62a6d3f668a87d6c1bc169664.zip |
Add missing dependencies to flex. (#13692)
-rw-r--r-- | var/spack/repos/builtin/packages/flex/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/flex/package.py b/var/spack/repos/builtin/packages/flex/package.py index 64e9bb69dc..dbe4a27bac 100644 --- a/var/spack/repos/builtin/packages/flex/package.py +++ b/var/spack/repos/builtin/packages/flex/package.py @@ -27,6 +27,8 @@ class Flex(AutotoolsPackage): depends_on('bison', type='build') depends_on('gettext@0.19:', type='build') depends_on('help2man', type='build') + depends_on('findutils', type='build') + depends_on('diffutils', type='build') # Older tarballs don't come with a configure script and the patch for # 2.6.4 touches configure |