diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-10 00:54:04 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-05-10 00:54:04 -0700 |
commit | 2fde72075ff6209f273bc26e8616e663fa5565f3 (patch) | |
tree | ce658fa7bac4b42f90304b2da852ceceb113ac04 /var | |
parent | e672e1021916ed12c4cf90daf1e6012e89672397 (diff) | |
parent | 6e07f46df89ef272357a2aa42bfaf4c4d60e0dfe (diff) | |
download | spack-2fde72075ff6209f273bc26e8616e663fa5565f3.tar.gz spack-2fde72075ff6209f273bc26e8616e663fa5565f3.tar.bz2 spack-2fde72075ff6209f273bc26e8616e663fa5565f3.tar.xz spack-2fde72075ff6209f273bc26e8616e663fa5565f3.zip |
Merge pull request #918 from hegner/bugfix/bison
Add missing m4 dependency to bison
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/bison/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bison/package.py b/var/spack/repos/builtin/packages/bison/package.py index 7c526fb958..9a2ddcbf96 100644 --- a/var/spack/repos/builtin/packages/bison/package.py +++ b/var/spack/repos/builtin/packages/bison/package.py @@ -10,6 +10,8 @@ class Bison(Package): version('3.0.4', 'a586e11cd4aff49c3ff6d3b6a4c9ccf8') + depends_on("m4") + def install(self, spec, prefix): configure("--prefix=%s" % prefix) |