diff options
author | raveit65 <[email protected]> | 2022-03-06 22:00:38 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-10-29 16:25:14 +0200 |
commit | f0cc35e8b9bb91969f624adc6040ebbcb7a5ef4a (patch) | |
tree | a0a8b23a7d8c9a48e2ddce58e364926b72503e77 | |
parent | c786a5dd6dd1a05d766c16c3910951e693d380f6 (diff) | |
download | mozo-f0cc35e8b9bb91969f624adc6040ebbcb7a5ef4a.tar.bz2 mozo-f0cc35e8b9bb91969f624adc6040ebbcb7a5ef4a.tar.xz |
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.`
-rw-r--r-- | data/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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', |