Codebase list gnome-shell-extensions / d3b93c7 debian / patches / meson-Drop-unused-argument-for-i18n.merge_file.patch
d3b93c7

Tree @d3b93c7 (Download .tar.gz)

meson-Drop-unused-argument-for-i18n.merge_file.patch @d3b93c7raw · history · blame

From: Jan Beich <[email protected]>
Date: Tue, 25 Jan 2022 11:49:54 +0000
Subject: 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:23:0: ERROR: Function does not take positional arguments.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/210>
Origin: backport, 42.beta, commit:cdaa837d48894737ca0b4e7d2dfb365119e53759
Bug-Debian: https://bugs.debian.org/1005534
---
 data/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/meson.build b/data/meson.build
index 27f4287..a4bcd5e 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -1,5 +1,5 @@
 session_desktop = 'gnome-classic.desktop'
-i18n.merge_file('',
+i18n.merge_file(
   input:  session_desktop + '.in',
   output: session_desktop,
   po_dir: '../po',