diff options
author | Aurelien Bouteiller <bouteill@icl.utk.edu> | 2021-08-12 02:22:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 08:22:46 +0200 |
commit | 66fc6940a0845b5eb1af33c6493ead0e4352fb2f (patch) | |
tree | 87edfac9a610a09123c3e9e27f924ba96c20a1fd | |
parent | aef4696593d1661e4b97a3876da25d784745a30f (diff) | |
download | spack-66fc6940a0845b5eb1af33c6493ead0e4352fb2f.tar.gz spack-66fc6940a0845b5eb1af33c6493ead0e4352fb2f.tar.bz2 spack-66fc6940a0845b5eb1af33c6493ead0e4352fb2f.tar.xz spack-66fc6940a0845b5eb1af33c6493ead0e4352fb2f.zip |
parsec: add missing build deps on flex/bison (#25373)
Signed-off-by: Aurelien Bouteiller <bouteill@icl.utk.edu>
-rw-r--r-- | var/spack/repos/builtin/packages/parsec/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/parsec/package.py b/var/spack/repos/builtin/packages/parsec/package.py index ab154e71b6..014b8e0256 100644 --- a/var/spack/repos/builtin/packages/parsec/package.py +++ b/var/spack/repos/builtin/packages/parsec/package.py @@ -39,6 +39,8 @@ class Parsec(CMakePackage, CudaPackage): depends_on('cmake@3.16:', type='build') depends_on('python', type='build') + depends_on('flex', type='build') + depends_on('bison', type='build') depends_on('hwloc') depends_on('mpi') depends_on('papi', when='+profile') |