diff options
author | raveit65 <[email protected]> | 2022-03-06 22:00:38 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-03-06 22:00:38 +0100 |
commit | 68ebf6c45f7f7d00b3c540dde3503e7995b2eff6 (patch) | |
tree | f09f10619f4197e81f2f9c8156e697c416ad2b5a | |
parent | ea09ecca9f83403991d403f05ac2e2eaa1487398 (diff) | |
download | mozo-68ebf6c45f7f7d00b3c540dde3503e7995b2eff6.tar.bz2 mozo-68ebf6c45f7f7d00b3c540dde3503e7995b2eff6.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', |