patches/glibc/2.1.3/el.po.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
     1 From
     2 http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/po/Makefile.diff?r1=1.17&r2=1.18&cvsroot=glibc
     3 
     4 Fixes error
     5   msgfmt -o el.mo el.po
     6   el.po:538:31: invalid multibyte sequence
     7   el.po:539:21: invalid multibyte sequence
     8   el.po:1537:38: invalid multibyte sequence
     9   msgfmt: found 3 fatal errors
    10   make[2]: *** [el.mo] Error 1
    11   make[2]: Leaving directory
    12   `/home/dkegel/wk/crosstool-0.25/build/i686-unknown-linux-gnu/gcc-2.95.3-glibc-2.1.3/glibc-2.1.3/po'
    13 
    14 ===================================================================
    15 RCS file: /cvs/glibc/libc/po/Makefile,v
    16 retrieving revision 1.17
    17 retrieving revision 1.18
    18 diff -u -r1.17 -r1.18
    19 --- libc/po/Makefile	1999/09/13 08:48:40	1.17
    20 +++ libc/po/Makefile	2001/04/20 04:45:54	1.18
    21 @@ -1,4 +1,4 @@
    22 -# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
    23 +# Copyright (C) 1996, 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
    24  # This file is part of the GNU C Library.
    25  
    26  # The GNU C Library is free software; you can redistribute it and/or
    27 @@ -20,8 +20,12 @@
    28  
    29  subdir := po
    30  
    31 +# List of languages that are currently broken (just run msgfmt from
    32 +# GNU gettext 0.10.36 on them to see why)
    33 +BROKEN_LINGUAS = el
    34 +
    35  # List of languages for which we have message catalogs of translations.
    36 -ALL_LINGUAS := $(basename $(wildcard *.po))
    37 +ALL_LINGUAS := $(filter-out $(BROKEN_LINGUAS),$(basename $(wildcard *.po)))
    38  
    39  # You can override this in configparms or the make command line to limit
    40  # the languages which get installed.