diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-30 00:00:04 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 12:18:28 -0500 |
commit | 539b18da3d533256f57b7114635883d3867aa8f9 (patch) | |
tree | 5a2dec15690cc2808ac500ea6e4ed66e97a92826 /gnu | |
parent | a8dd1d2abf06f93c740cfe18038d7b69ad889943 (diff) |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7ee520b7ae..b4849dfb8b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5363,7 +5363,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) |