minc-toolkit: add runtime flex dependency (#32345)
Some programs such as `minccalc` depend on libfl.so at runtime.
This commit is contained in:
parent
7e87c208ba
commit
3fb7fdfc58
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class MincToolkit(CMakePackage):
|
||||||
depends_on("perl-text-format", type=("build", "run"))
|
depends_on("perl-text-format", type=("build", "run"))
|
||||||
depends_on("perl-getopt-tabular", type=("build", "run"))
|
depends_on("perl-getopt-tabular", type=("build", "run"))
|
||||||
depends_on("perl-mni-perllib", type=("build", "run"))
|
depends_on("perl-mni-perllib", type=("build", "run"))
|
||||||
depends_on("flex", type="build")
|
depends_on("flex", type=("build", "run")) # e.g minccalc depends on libfl.so
|
||||||
depends_on("bison", type="build")
|
depends_on("bison", type="build")
|
||||||
depends_on("zlib", type="link")
|
depends_on("zlib", type="link")
|
||||||
depends_on("freeglut", when="+visualisation")
|
depends_on("freeglut", when="+visualisation")
|
||||||
|
|
Loading…
Reference in a new issue