2023-04-26 11:51:58 +02:00
|
|
|
From a2037b0747163601a5d5b57856d037eecf3a4db7 Mon Sep 17 00:00:00 2001
|
2022-02-03 22:52:48 +01:00
|
|
|
From: Jan Beich <jbeich@FreeBSD.org>
|
|
|
|
Date: Mon, 24 Jan 2022 11:22:48 +0000
|
|
|
|
Subject: [PATCH] meson: drop unused argument for i18n.merge_file()
|
|
|
|
|
|
|
|
Ignored in Meson < 0.60.0, deprecated since 0.60.1 and fatal since 0.61.0.
|
|
|
|
|
|
|
|
data/meson.build:24:0: ERROR: Function does not take positional arguments.
|
|
|
|
data/meson.build:45:0: ERROR: Function does not take positional arguments.
|
|
|
|
---
|
|
|
|
data/meson.build | 3 +--
|
|
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
|
2023-04-26 12:48:26 +02:00
|
|
|
Index: gnome-mahjongg-3.38.3/data/meson.build
|
|
|
|
===================================================================
|
|
|
|
--- gnome-mahjongg-3.38.3.orig/data/meson.build
|
|
|
|
+++ gnome-mahjongg-3.38.3/data/meson.build
|
|
|
|
@@ -22,7 +22,6 @@ install_data ('smooth.png', install_dir:
|
|
|
|
install_data ('edu_kang_xi.png', install_dir: join_paths (pkgdatadir, 'themes'))
|
2022-02-03 22:52:48 +01:00
|
|
|
|
|
|
|
desktop_file = i18n.merge_file (
|
|
|
|
- 'desktop-file',
|
|
|
|
input: 'org.gnome.Mahjongg.desktop.in',
|
|
|
|
output: 'org.gnome.Mahjongg.desktop',
|
|
|
|
install: true,
|
2023-04-26 12:48:26 +02:00
|
|
|
@@ -42,7 +41,7 @@ if desktop_file_validate.found()
|
2022-02-03 22:52:48 +01:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
-appdata_file = i18n.merge_file ('appdata-file',
|
|
|
|
+appdata_file = i18n.merge_file (
|
|
|
|
input: 'org.gnome.Mahjongg.appdata.xml.in',
|
|
|
|
output: 'org.gnome.Mahjongg.appdata.xml',
|
|
|
|
install: true,
|