blob: c28b9002575e5b463b3312c6c9d00e8ce019d84e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
https://gitlab.gnome.org/GNOME/gnome-disk-utility/-/commit/46ed7d26873b9741dff61f9df8e7778a8dc6f5cc
https://bugs.gentoo.org/831552
From: rvalue <i@rvalue.moe>
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
|