diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-26 10:28:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-26 10:28:28 +0000 |
commit | bc900b1118e1fc7b065b37e4d28aa7c998ce5a66 (patch) | |
tree | a357833b862e355303d57f645f5e2d52f3e775c3 /iconvdata/Makefile | |
parent | 918b9d72a9980efd4622bd25506da9531a952dbe (diff) | |
download | glibc-bc900b1118e1fc7b065b37e4d28aa7c998ce5a66.tar.gz glibc-bc900b1118e1fc7b065b37e4d28aa7c998ce5a66.tar.xz glibc-bc900b1118e1fc7b065b37e4d28aa7c998ce5a66.zip |
Update.
1998-04-26 Ulrich Drepper <drepper@cygnus.com> * iconvdata/gconv-modules: Add entry for ISO-2022-JP and ISO-2022-JP-2.
Diffstat (limited to 'iconvdata/Makefile')
-rw-r--r-- | iconvdata/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/Makefile b/iconvdata/Makefile index 8b83ade4fe..d302250a8b 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -353,7 +353,7 @@ $(objpfx)ibm1047.h: ../localedata/charmaps/IBM1047 Makefile $(objpfx)iso8859-7jp.h: ../localedata/charmaps/ISO-8859-7 Makefile $(make-target-directory) ( echo "static const uint32_t iso88597_to_ucs4[96] = {"; \ - sed -e '/^[^[:space:]]*[[:space:]]*.x00/d' -e 's/^[^[:space:]]*[[:space:]]*.x\([A-F].\)[[:space:]]*<U\(....\)>.*/ [0x\1-0xA0] = 0x\2,/p' -e d $^ | sort -u; \ + sed -e '/^[^[:space:]]*[[:space:]]*.x00/d' -e 's/^[^[:space:]]*[[:space:]]*.x\([A-F].\)[[:space:]]*<U\(....\)>.*/ [0x\1 - 0xA0] = 0x\2,/p' -e d $^ | sort -u; \ echo "};"; \ echo "static struct gap from_idx[] = {"; \ sed -e '/^[^[:space:]]*[[:space:]]*.x00/d' -e 's/^[^[:space:]]*[[:space:]]*.x\([A-F].\)[[:space:]]*<U\(....\)>.*/0x\2 0x\1/p' -e d $^ | sort -u | $(PERL) gap.pl; \ |