mhw pushed a commit to branch core-updates
in repository guix.
commit e3eb53e7492f8dbbb52c34511c2effc1af82e020
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 23 02:21:53 2018 -0400
gnu: geoclue: Return #t from all phases.
* gnu/packages/gnome.scm (geoclue)[arguments]: Return #t from
the 'patch-/bin/true' phase.
---
gnu/packages/gnome.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 88943e4..9557c5e 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2865,7 +2865,8 @@ output devices.")
(add-before 'configure 'patch-/bin/true
(lambda _
(substitute* "configure"
- (("/bin/true") (which "true"))))))))
+ (("/bin/true") (which "true")))
+ #t)))))
(native-inputs
`(("pkg-config" ,pkg-config)
("gobject-introspection" ,gobject-introspection)