yann@1: From yann@1: http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/po/Makefile.diff?r1=1.17&r2=1.18&cvsroot=glibc yann@1: yann@1: Fixes error yann@1: msgfmt -o el.mo el.po yann@1: el.po:538:31: invalid multibyte sequence yann@1: el.po:539:21: invalid multibyte sequence yann@1: el.po:1537:38: invalid multibyte sequence yann@1: msgfmt: found 3 fatal errors yann@1: make[2]: *** [el.mo] Error 1 yann@1: make[2]: Leaving directory yann@1: `/home/dkegel/wk/crosstool-0.25/build/i686-unknown-linux-gnu/gcc-2.95.3-glibc-2.1.3/glibc-2.1.3/po' yann@1: yann@1: =================================================================== yann@1: RCS file: /cvs/glibc/libc/po/Makefile,v yann@1: retrieving revision 1.17 yann@1: retrieving revision 1.18 yann@1: diff -u -r1.17 -r1.18 yann@1: --- libc/po/Makefile 1999/09/13 08:48:40 1.17 yann@1: +++ libc/po/Makefile 2001/04/20 04:45:54 1.18 yann@1: @@ -1,4 +1,4 @@ yann@1: -# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. yann@1: +# Copyright (C) 1996, 1997, 1998, 1999, 2001 Free Software Foundation, Inc. yann@1: # This file is part of the GNU C Library. yann@1: yann@1: # The GNU C Library is free software; you can redistribute it and/or yann@1: @@ -20,8 +20,12 @@ yann@1: yann@1: subdir := po yann@1: yann@1: +# List of languages that are currently broken (just run msgfmt from yann@1: +# GNU gettext 0.10.36 on them to see why) yann@1: +BROKEN_LINGUAS = el yann@1: + yann@1: # List of languages for which we have message catalogs of translations. yann@1: -ALL_LINGUAS := $(basename $(wildcard *.po)) yann@1: +ALL_LINGUAS := $(filter-out $(BROKEN_LINGUAS),$(basename $(wildcard *.po))) yann@1: yann@1: # You can override this in configparms or the make command line to limit yann@1: # the languages which get installed.