[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: wayland: Improve fix-graphviz phase.
From: |
Arun Isaac |
Subject: |
01/01: gnu: wayland: Improve fix-graphviz phase. |
Date: |
Thu, 20 Jul 2017 10:06:05 -0400 (EDT) |
arunisaac pushed a commit to branch staging
in repository guix.
commit d670267cbdceb4c234bac4467ac7bacc081b85dd
Author: Arun Isaac <address@hidden>
Date: Wed Jul 19 14:46:30 2017 +0530
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.
---
gnu/packages/freedesktop.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index d0d7604..df2fe78 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -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)