diff options
author | Robert Mijakovic <robert.mijakovic@gmail.com> | 2021-04-18 16:16:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 09:16:08 -0500 |
commit | 7e56973d22a616769c25c37982ed2763a6b16d9a (patch) | |
tree | 4115bf25ab68ffd5f10845c0e226d98a5129e24c | |
parent | 181341c8b3a4f301773fe2658107c94bc79b57f3 (diff) | |
download | spack-7e56973d22a616769c25c37982ed2763a6b16d9a.tar.gz spack-7e56973d22a616769c25c37982ed2763a6b16d9a.tar.bz2 spack-7e56973d22a616769c25c37982ed2763a6b16d9a.tar.xz spack-7e56973d22a616769c25c37982ed2763a6b16d9a.zip |
py-sip: fix for missing flex/bison (#22870)
-rw-r--r-- | var/spack/repos/builtin/packages/py-sip/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-sip/package.py b/var/spack/repos/builtin/packages/py-sip/package.py index e5fb2735d1..3c86a2449d 100644 --- a/var/spack/repos/builtin/packages/py-sip/package.py +++ b/var/spack/repos/builtin/packages/py-sip/package.py @@ -29,8 +29,8 @@ class PySip(Package): extends('python') - depends_on('flex', type='build', when='@develop') - depends_on('bison', type='build', when='@develop') + depends_on('flex', type='build') + depends_on('bison', type='build') # https://www.riverbankcomputing.com/static/Docs/sip/installation.html phases = ['configure', 'build', 'install'] |