eb4ce2b64f
- Fix: actually use the date library dependency provided by hhdate Currently packaged waybar is silently using a fallback version of the clock without fancy format strings, so that e.g. the calendar tooltip does not work. This was not obvious to me when I moved the date library dependency to its own hhdate package, and I am rectifying this now. OBS-URL: https://build.opensuse.org/request/show/1042785 OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/waybar?expand=0&rev=97
13 lines
494 B
Diff
13 lines
494 B
Diff
diff --git a/meson.build b/meson.build
|
|
index 9354ca8..e61ee70 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -120,7 +120,6 @@ gtk_layer_shell = dependency('gtk-layer-shell-0',
|
|
fallback : ['gtk-layer-shell', 'gtk_layer_shell_dep'])
|
|
systemd = dependency('systemd', required: get_option('systemd'))
|
|
tz_dep = dependency('date',
|
|
- required: false,
|
|
default_options : [ 'use_system_tzdb=true' ],
|
|
modules : [ 'date::date', 'date::date-tz' ],
|
|
fallback: [ 'date', 'tz_dep' ])
|