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.
master
Arun Isaac 2017-07-19 14:46:30 +05:30
parent 28a96f2aa1
commit d670267cbd
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 5 additions and 3 deletions

View File

@ -371,13 +371,15 @@ Python.")
`(#:parallel-tests? #f
#: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
;; 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
(lambda _
(substitute* "doc/doxygen/dot/x-architecture.gv"
(("Mrecord") "none")))))))
(("Mrecord") "none"))
#t)))))
(native-inputs
`(("doxygen" ,doxygen)
("graphviz" ,graphviz)