mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-libs/icu: Backport fix for bug 573294
Package-Manager: portage-2.2.27
This commit is contained in:
13
dev-libs/icu/files/icu-flagparser.patch
Normal file
13
dev-libs/icu/files/icu-flagparser.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
Index: source/tools/toolutil/flagparser.c
|
||||
===================================================================
|
||||
--- a/source/tools/toolutil/flagparser.c (revision 38080)
|
||||
+++ b/source/tools/toolutil/flagparser.c (revision 38081)
|
||||
@@ -97,7 +97,7 @@
|
||||
|
||||
T_FileStream_close(f);
|
||||
|
||||
- if (U_FAILURE(*status)) {
|
||||
+ if (U_FAILURE(*status) && *status != U_BUFFER_OVERFLOW_ERROR) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -34,6 +34,7 @@ src_prepare() {
|
||||
local variable
|
||||
|
||||
epatch "${FILESDIR}/${PN}-remove-bashisms.patch"
|
||||
epatch "${FILESDIR}/${PN}-flagparser.patch"
|
||||
epatch_user
|
||||
|
||||
# Disable renaming as it is stupind thing to do
|
||||
|
||||
Reference in New Issue
Block a user