mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
28 lines
998 B
Diff
28 lines
998 B
Diff
Author: ptrcnull <git@ptrcnull.me>
|
|
Date: Thu Feb 3 23:35:17 2022 +0100
|
|
Patch-Source: https://gitlab.gnome.org/World/highscore/-/merge_requests/20
|
|
|
|
Remove positional arguments from i18n.merge_file
|
|
|
|
diff --git a/data/meson.build b/data/meson.build
|
|
index 20bcbb8a..b851c317 100644
|
|
--- a/data/meson.build
|
|
+++ b/data/meson.build
|
|
@@ -44,7 +44,7 @@ mime_types = [
|
|
desktop_conf = configuration_data()
|
|
desktop_conf.set('icon', application_id)
|
|
desktop_conf.set('mimetypes', ';'.join(mime_types) + ';')
|
|
-desktop_file = i18n.merge_file ('desktop-file',
|
|
+desktop_file = i18n.merge_file (
|
|
type: 'desktop',
|
|
input: configure_file(
|
|
input: files('org.gnome.Games.desktop.in.in'),
|
|
@@ -70,7 +70,7 @@ endif
|
|
|
|
appdata_conf = configuration_data()
|
|
appdata_conf.set('appid', application_id)
|
|
-appdata_file = i18n.merge_file ('appdata-file',
|
|
+appdata_file = i18n.merge_file (
|
|
input: configure_file(
|
|
input: files('org.gnome.Games.appdata.xml.in.in'),
|
|
output: 'org.gnome.Games.appdata.xml.in',
|