Skip to content
Snippets Groups Projects
Unverified Commit 88187bc6 authored by Joseph Wang's avatar Joseph Wang Committed by GitHub
Browse files

add groff and ghostscript (#18803)

Without these packages, graphviz will set groff/ghostscript to false which will cause the build to fail.
parent 678e9f5a
No related branches found
No related tags found
No related merge requests found
...@@ -117,6 +117,9 @@ class Graphviz(AutotoolsPackage): ...@@ -117,6 +117,9 @@ class Graphviz(AutotoolsPackage):
depends_on('bison', type='build') depends_on('bison', type='build')
depends_on('flex', type='build') depends_on('flex', type='build')
depends_on('libtool', type='build') depends_on('libtool', type='build')
# required to build docs
depends_on('groff', type='build')
depends_on('ghostscript', type='build')
parallel = False parallel = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment