summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Trevisan (TreviƱo) <mail@3v1n0.net>2021-10-27 15:44:31 +0200
committerBenjamin Berg <benjamin@sipsolutions.net>2021-11-02 15:06:29 +0000
commit50943b1bd4f18d103c35233f0446ce7a31d1817e (patch)
treeaed04034a8040fc0b024e0c42ef76fb1abcb9342
parent245dcfa21827f03af5c2e2d6a8035de17718a4ce (diff)
build: Do not use positional arguments in i18n.merge_file
This was never really used and it's breaking meson 60. While this may just become a warning in 60.1, it's just better to avoid using it. See: https://github.com/mesonbuild/meson/issues/9441
-rw-r--r--data/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/meson.build b/data/meson.build
index 92bfa2e..ece5fc6 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -24,7 +24,7 @@ if get_option('systemd')
endif
polkit_policy = 'net.reactivated.fprint.device.policy'
-polkit_policy_target = i18n.merge_file(polkit_policy,
+polkit_policy_target = i18n.merge_file(
input: '@0@.in'.format(polkit_policy),
output: polkit_policy,
po_dir: meson.source_root() / 'po',