From 68ebf6c45f7f7d00b3c540dde3503e7995b2eff6 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Sun, 6 Mar 2022 22:00:38 +0100 Subject: meson build: drop desktop-file argument - fixes building with meson-0.62.0 With meson-0.62.0 this deprecation warning will cause an error. `DEPRECATION: i18n.merge_file does not take any positional arguments. This will become a hard error in the next Meson release.` --- data/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/meson.build b/data/meson.build index f471366..5f8fd48 100644 --- a/data/meson.build +++ b/data/meson.build @@ -4,7 +4,7 @@ desktop_in = configuration_data() desktop_in.set('VERSION', meson.project_version()) desktop_file = 'mozo.desktop' -i18n.merge_file(desktop_file, +i18n.merge_file( input: configure_file( input: desktop_file + '.in.in', output: desktop_file + '.in', -- cgit v1.2.1