diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-04-05 09:31:09 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-04-05 09:31:09 (GMT) |
commit | 030623efb3c565883ef62d9bd8054255848df890 (patch) | |
tree | 6ac3aa83c369fc77956e216b698c1b722524f571 /src | |
parent | 1b0a25f0acdfa4d596efcc4254c083b5e0bce1d6 (diff) | |
download | mxe-030623efb3c565883ef62d9bd8054255848df890.zip mxe-030623efb3c565883ef62d9bd8054255848df890.tar.gz mxe-030623efb3c565883ef62d9bd8054255848df890.tar.bz2 |
include an important bugfix for package gettext
Diffstat (limited to 'src')
-rw-r--r-- | src/gettext.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gettext.mk b/src/gettext.mk index 542c021..d3aac52 100644 --- a/src/gettext.mk +++ b/src/gettext.mk @@ -24,6 +24,12 @@ define $(PKG)_BUILD --disable-nls $(MAKE) -C '$(1)/$(libiconv_SUBDIR)' -j 1 install + # bugfix for gettext + # This problem will be solved in gettext >= 1.8. See: + # http://git.savannah.gnu.org/cgit/gettext.git/commit/?id=ecad95f51a11409cc0d30b22913a8ba77d3edf1d + sed 's/O_CREAT);/O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);/' \ + -i '$(1)/gettext-tools/src/write-catalog.c' + # native build for gettext-tools cd '$(1)/gettext-tools' && ./configure \ --disable-shared \ |