Control: tag -1 + patch Hi,
Jonathan Dowland (2024-07-21): > I believe the issue is a po file generated and written out by t/po.t > (missing a content-type header). It looks like it indeed! The attached Git patch (against current upstream master branch) fixes the test failure when I run the test suite from within an upstream Git clone. I did not test it in the context of building the Debian package. Cheers, -- intrigeri
>From 9baf09f13c266044e39ac7b9b9ebbdb823dad2a5 Mon Sep 17 00:00:00 2001 From: intrigeri <intrig...@boum.org> Date: Mon, 22 Jul 2024 09:03:08 +0000 Subject: [PATCH] t/po.t: Add missing PO header This fixes Debian#1074727. --- t/po.t | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/t/po.t b/t/po.t index fd07b242f..351198826 100755 --- a/t/po.t +++ b/t/po.t @@ -126,6 +126,11 @@ msgid "After inlines" msgstr "Après les inlines" EOF writefile('debian911356-inlined.fr.po', $config{srcdir}, <<EOF); +msgid "" msgstr "" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" + msgid "English content" msgstr "Contenu français" EOF -- 2.45.2