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... :-(
yann@1
     1
From
yann@1
     2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/po/Makefile.diff?r1=1.17&r2=1.18&cvsroot=glibc
yann@1
     3
yann@1
     4
Fixes error
yann@1
     5
  msgfmt -o el.mo el.po
yann@1
     6
  el.po:538:31: invalid multibyte sequence
yann@1
     7
  el.po:539:21: invalid multibyte sequence
yann@1
     8
  el.po:1537:38: invalid multibyte sequence
yann@1
     9
  msgfmt: found 3 fatal errors
yann@1
    10
  make[2]: *** [el.mo] Error 1
yann@1
    11
  make[2]: Leaving directory
yann@1
    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'
yann@1
    13
yann@1
    14
===================================================================
yann@1
    15
RCS file: /cvs/glibc/libc/po/Makefile,v
yann@1
    16
retrieving revision 1.17
yann@1
    17
retrieving revision 1.18
yann@1
    18
diff -u -r1.17 -r1.18
yann@1
    19
--- libc/po/Makefile	1999/09/13 08:48:40	1.17
yann@1
    20
+++ libc/po/Makefile	2001/04/20 04:45:54	1.18
yann@1
    21
@@ -1,4 +1,4 @@
yann@1
    22
-# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
yann@1
    23
+# Copyright (C) 1996, 1997, 1998, 1999, 2001 Free Software Foundation, Inc.
yann@1
    24
 # This file is part of the GNU C Library.
yann@1
    25
 
yann@1
    26
 # The GNU C Library is free software; you can redistribute it and/or
yann@1
    27
@@ -20,8 +20,12 @@
yann@1
    28
 
yann@1
    29
 subdir := po
yann@1
    30
 
yann@1
    31
+# List of languages that are currently broken (just run msgfmt from
yann@1
    32
+# GNU gettext 0.10.36 on them to see why)
yann@1
    33
+BROKEN_LINGUAS = el
yann@1
    34
+
yann@1
    35
 # List of languages for which we have message catalogs of translations.
yann@1
    36
-ALL_LINGUAS := $(basename $(wildcard *.po))
yann@1
    37
+ALL_LINGUAS := $(filter-out $(BROKEN_LINGUAS),$(basename $(wildcard *.po)))
yann@1
    38
 
yann@1
    39
 # You can override this in configparms or the make command line to limit
yann@1
    40
 # the languages which get installed.