diff options
author | raveit65 <[email protected]> | 2022-02-19 21:11:23 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-03-04 23:13:45 +0100 |
commit | f8e7da39c14cb94714e00b25ec5f3fcc8f0de6fd (patch) | |
tree | 24579f4f4283e08506505aa6542fafdd835ca4be /meson.build | |
parent | 164a19370cba65fc5538ccd7e9a43cf7de7df226 (diff) | |
download | mate-terminal-f8e7da39c14cb94714e00b25ec5f3fcc8f0de6fd.tar.bz2 mate-terminal-f8e7da39c14cb94714e00b25ec5f3fcc8f0de6fd.tar.xz |
meson build: drop desktop-file/appdata-file argument
- fixes building with meson-0.62.0
- fixes https://github.com/mate-desktop/mate-terminal/issues/411
look here for more details.
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.`
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 8bf45a5..a71dc01 100644 --- a/meson.build +++ b/meson.build @@ -177,7 +177,6 @@ desktop_file_configured = configure_file( ) desktop_file = i18n.merge_file( - 'desktop-file', input: desktop_file_configured, output: 'mate-terminal.desktop', type: 'desktop', @@ -209,7 +208,6 @@ appdata_file_configured = configure_file( ) appdata_file = i18n.merge_file( - 'appdata-file', input: appdata_file_configured, output: 'mate-terminal.appdata.xml', type: 'xml', |