diff options
author | martin <martin@pkgsrc.org> | 2019-05-13 14:55:05 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2019-05-13 14:55:05 +0000 |
commit | 35572fbe1f927db3d3c6f44c2e5ed6d50d996c55 (patch) | |
tree | 498208081d32ecd114e597d847c897ad1195ff46 /textproc/icu | |
parent | d09d7f6afd4454e9333d28055c9c5b976d45e04c (diff) | |
download | pkgsrc-35572fbe1f927db3d3c6f44c2e5ed6d50d996c55.tar.gz |
Work around upstream bug, PR pkg/54193
Diffstat (limited to 'textproc/icu')
-rw-r--r-- | textproc/icu/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/icu/Makefile b/textproc/icu/Makefile index 3d81aa481bd..c8f59bda3d1 100644 --- a/textproc/icu/Makefile +++ b/textproc/icu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.125 2019/05/04 20:30:34 wiedi Exp $ +# $NetBSD: Makefile,v 1.126 2019/05/13 14:55:05 martin Exp $ DISTNAME= icu4c-64_2-src PKGNAME= ${DISTNAME:S/4c//:S/-src//:S/_/./g} @@ -101,6 +101,10 @@ PKGCONFIG_OVERRIDE+= config/icu-uc.pc PKGCONFIG_OVERRIDE+= config/icu.pc PKGCONFIG_OVERRIDE_STAGE= post-build +# work around ICU-20533 (build failure on big endian machines) +post-configure: + ${MKDIR} ${WRKSRC}/data/out + # expect builtin gcc atomic functions for gcc>=4.1 # (source/common/putilimp.h) .if !empty(CC_VERSION:Mgcc-*) && \ |