vagrantc pushed a commit to branch core-updates-frozen-batched-changes in repository guix.
commit 5b8235ad17e750e46231176c75d7e44b334dab58 Author: Maxim Cournoyer <[email protected]> AuthorDate: Sat Oct 30 00:00:04 2021 -0400 gnu: geoclue: Fix build option name. * gnu/packages/gnome.scm (geoclue)[configure-flags]<bus-srv-user>: Rename to... <dbus-srv-user>: ... this. The error was caught by meson 0.60. --- gnu/packages/gnome.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 08033d7..7bbffa4 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5362,7 +5362,7 @@ output devices.") (patches (search-patches "geoclue-config.patch")))) (build-system meson-build-system) (arguments - '(#:configure-flags (list "-Dbus-srv-user=geoclue"))) + '(#:configure-flags (list "-Ddbus-srv-user=geoclue"))) (native-inputs `(("pkg-config" ,pkg-config) ("gobject-introspection" ,gobject-introspection)
