gnu: wayland: Improve fix-graphviz phase.
* gnu/packages/freedesktop.scm (wayland)[arguments]: Return #t from fix-graphviz phase. Add punctuation and upstream bug report link to comments.
This commit is contained in:
parent
28a96f2aa1
commit
d670267cbd
|
@ -371,13 +371,15 @@ Python.")
|
||||||
`(#:parallel-tests? #f
|
`(#:parallel-tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; Remove record shapes to workaround graphviz 2.40.1 problems
|
;; Remove record shapes to workaround graphviz 2.40.1 problems.
|
||||||
;; http://www.graphviz.org/content/i-havent-been-able-render-these-files-graphviz-226
|
;; http://www.graphviz.org/content/i-havent-been-able-render-these-files-graphviz-226
|
||||||
;; This will likely be fixed upstream in the next release
|
;; This will likely be fixed upstream in the next release.
|
||||||
|
;; https://lists.freedesktop.org/archives/wayland-devel/2017-June/034218.html
|
||||||
(add-before 'build 'fix-graphviz
|
(add-before 'build 'fix-graphviz
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "doc/doxygen/dot/x-architecture.gv"
|
(substitute* "doc/doxygen/dot/x-architecture.gv"
|
||||||
(("Mrecord") "none")))))))
|
(("Mrecord") "none"))
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
("graphviz" ,graphviz)
|
("graphviz" ,graphviz)
|
||||||
|
|
Loading…
Reference in New Issue