From e3eb53e7492f8dbbb52c34511c2effc1af82e020 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Fri, 23 Mar 2018 02:21:53 -0400 Subject: [PATCH] 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 88943e4e61..9557c5e856 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2865,7 +2865,8 @@ (define-public geoclue (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)