blob: 91d68848c70e523ac7dd17694d8b12564f40d3eb [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From 9be0b489a94b57419202c552022f25cb95bfac51 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 17 Apr 2019 16:41:58 +0200
4Subject: [PATCH] Fix big-endian build
5
6Bug-report: https://unicode-org.atlassian.net/browse/ICU-20533
7Patch taken from: https://bugs.gentoo.org/682170
8
Andrew Geissler82c905d2020-04-13 13:39:40 -05009it is applied upstream and will be in version 67+
10
11Upstream-Status: Backport [https://github.com/unicode-org/icu/commit/4a3a457b38cd828b7b3fa4fdbc6e2504a57275e9]
Brad Bishopc342db32019-05-15 21:57:59 -040012Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13---
14 data/Makefile.in | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
Brad Bishopc342db32019-05-15 21:57:59 -040017--- a/data/Makefile.in
18+++ b/data/Makefile.in
Andrew Geissler82c905d2020-04-13 13:39:40 -050019@@ -148,7 +148,8 @@ ICUDATA_ARCHIVE = $(firstword $(wildcard
20 # and convert it to the current type.
21 ifneq ($(ICUDATA_ARCHIVE),)
22 ICUDATA_SOURCE_ARCHIVE = $(OUTDIR)/$(ICUDATA_PLATFORM_NAME).dat
23-$(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE) $(OUTDIR)
24+$(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE)
25+ $(MKINSTALLDIRS) $(OUTDIR)
26 $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(ICUDATA_ARCHIVE) $(ICUDATA_SOURCE_ARCHIVE)
27 endif
28 else