update changelog.

This commit is contained in:
Yue-Lan 2023-04-25 14:51:53 +08:00 committed by cckylin-cibot
parent b92593d66b
commit e05239960e
3 changed files with 28 additions and 0 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
glib2.0 (2.74.5-ok3~0425build1) yangtze; urgency=medium
* 修复riscv64架构下spawn-test失败的问题
-- Yue Lan <lanyue@kylinos.cn> Tue, 25 Apr 2023 14:51:15 +0800
glib2.0 (2.74.5-ok3~0425) yangtze; urgency=medium
* 屏蔽arm架构下threadtests避免构建失败问题

View File

@ -1,3 +1,4 @@
Modify-debian-control.patch
update-changelog.patch
update-changelog-1.patch
update-changelog-2.patch

21
debian/patches/update-changelog-2.patch vendored Normal file
View File

@ -0,0 +1,21 @@
From: Yue-Lan <lanyue@ubuntukylin.com>
Date: Tue, 25 Apr 2023 14:51:53 +0800
Subject: update changelog.
---
glib/tests/spawn-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/glib/tests/spawn-test.c b/glib/tests/spawn-test.c
index 95975f6..9fcf45f 100644
--- a/glib/tests/spawn-test.c
+++ b/glib/tests/spawn-test.c
@@ -112,7 +112,7 @@ test_spawn_basics (void)
g_assert_true (result);
g_test_message ("sort non-existing-file.txt error output: %s", erroutput);
#ifndef G_OS_WIN32
- g_assert_true (g_str_has_prefix (erroutput, "sort: "));
+ g_assert_true (g_str_has_prefix (erroutput, "sort: ") || g_str_has_prefix (erroutput, "/usr/bin/sort: "));
g_assert_nonnull (strstr (erroutput, g_strerror (ENOENT)));
#else
{