https://gitlab.gnome.org/GNOME/gnome-disk-utility/-/commit/46ed7d26873b9741dff61f9df8e7778a8dc6f5cc https://bugs.gentoo.org/831552 From: rvalue Date: Fri, 17 Dec 2021 12:29:30 +0000 Subject: [PATCH] build: fix arguments of i18n.merge_file `i18n.merge_file` has been ignoring positional arguments for a time and explicitly rejects with error since meson 0.60.0 --- a/data/meson.build +++ b/data/meson.build @@ -11,7 +11,6 @@ desktops = [ foreach desktop: desktops i18n.merge_file ( - desktop, type: 'desktop', input: desktop + '.in', output: desktop, @@ -38,7 +37,6 @@ install_data( info = 'org.gnome.DiskUtility.appdata.xml' i18n.merge_file( - info, input: info + '.in', output: info, po_dir: po_dir, GitLab