apteryx pushed a commit to branch version-1.4.0
in repository guix.
commit a200a2f8a804cbb5115c1f966be7d2def8be6878
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Fri Dec 17 23:26:35 2021 -0500
gnu: glibmm: Remove trailing #t.
* gnu/packages/glib.scm (glibmm): Remove trailing #t.
---
gnu/packages/glib.scm | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index ade4eb32aa..b8230eac16 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -760,8 +760,7 @@ by GDBus included in Glib.")
(outputs '("out" "doc"))
(arguments
`(#:configure-flags
- (list
- "-Dbuild-documentation=true")
+ (list "-Dbuild-documentation=true")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-failing-tests
@@ -772,8 +771,7 @@ by GDBus included in Glib.")
(("[ \t]*.*giomm_simple.*$") "")
;; This test does a DNS lookup, and then expects to be able
;; to open a TLS session; just skip it.
- (("[ \t]*.*giomm_tls_client.*$") ""))
- #t))
+ (("[ \t]*.*giomm_tls_client.*$") ""))))
(add-after 'install 'move-doc
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@@ -781,8 +779,7 @@ by GDBus included in Glib.")
(mkdir-p (string-append doc "/share"))
(rename-file
(string-append out "/share/doc")
- (string-append doc "/share/doc"))
- #t))))))
+ (string-append doc "/share/doc"))))))))
(native-inputs
`(("dot" ,graphviz)
("doxygen" ,doxygen)