mirror of https://gitee.com/openkylin/glib2.0.git
update changelog.
This commit is contained in:
parent
b92593d66b
commit
e05239960e
|
@ -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,避免构建失败问题
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Modify-debian-control.patch
|
||||
update-changelog.patch
|
||||
update-changelog-1.patch
|
||||
update-changelog-2.patch
|
||||
|
|
|
@ -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
|
||||
{
|
Loading…
Reference in New Issue