From d0b52dddcb511012ad8e5b165c0c3451d5e4d91c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sun, 4 May 2025 10:51:40 +0200 Subject: [PATCH] build: Drop meson version check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We require meson 1.0 anyway Signed-off-by: Guido Günther Part-of: --- meson.build | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/meson.build b/meson.build index 094e606..57b3ed1 100644 --- a/meson.build +++ b/meson.build @@ -165,13 +165,8 @@ subdir('plugins') subdir('tests') subdir('doc') -# gnome.post_install() is available since meson 0.59.0 -# Distributions use their own tooling (e.g. postinst, triggers, etc) -# so it is okay if the post_install() is not run on distro builds -if meson.version().version_compare('>=0.59.0') - gnome.post_install( +gnome.post_install( glib_compile_schemas: true, gtk_update_icon_cache: true, update_desktop_database: true, - ) -endif +)