changeset 323:5dde467a5517

bugfix: Disallow package gettext to try to build its Java and C# variants
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 16 Apr 2009 15:41:48 +0200
parents 3e5e759d95e3
children beb10af0e886
files src/gettext.mk
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gettext.mk	Thu Apr 16 11:59:55 2009 +0200
+++ b/src/gettext.mk	Thu Apr 16 15:41:48 2009 +0200
@@ -22,6 +22,8 @@
     cd '$(1)/$(libiconv_SUBDIR)' && ./configure \
         --prefix='$(1)/libiconv' \
         --disable-shared \
+        --disable-java \
+        --disable-csharp \
         --disable-nls
     $(MAKE) -C '$(1)/$(libiconv_SUBDIR)' -j 1 install
 
@@ -29,12 +31,14 @@
     # 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'
+        -i '$(1)/gettext-tools/src/write-catalog.c'
 
     # native build for gettext-tools
     cd '$(1)/gettext-tools' && ./configure \
         --disable-shared \
         --prefix='$(PREFIX)' \
+        --disable-java \
+        --disable-csharp \
         --disable-threads \
         --with-libiconv-prefix='$(1)/libiconv' \
         --with-included-gettext \