mirror of git://sourceware.org/git/glibc.git
Update.
* timezone/Makefile (build-testdata): Set LANGUAGE and LC_ALL since zic uses setlocale and gettext but we cannot make it use the new locale data since zic calls a shell which might not use the new libc.
This commit is contained in:
parent
3da67f9970
commit
71d82dbe9e
|
|
@ -1,5 +1,10 @@
|
||||||
2000-06-30 Ulrich Drepper <drepper@redhat.com>
|
2000-06-30 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* timezone/Makefile (build-testdata): Set LANGUAGE and LC_ALL
|
||||||
|
since zic uses setlocale and gettext but we cannot make it use the
|
||||||
|
new locale data since zic calls a shell which might not use the
|
||||||
|
new libc.
|
||||||
|
|
||||||
* stdlib/strfmon.c: Move somewhat closer to the standard wrt to
|
* stdlib/strfmon.c: Move somewhat closer to the standard wrt to
|
||||||
handling the internation currency symbol. POSIX says that the
|
handling the internation currency symbol. POSIX says that the
|
||||||
fourth character is used to separate the currency symbol from the
|
fourth character is used to separate the currency symbol from the
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2000-06-30 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* gen-locale.sh: Print that it might take a while to finish.
|
||||||
|
|
||||||
2000-06-30 Jakub Jelinek <jakub@redhat.com>
|
2000-06-30 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* Makefile (install-locales): Remove the -u switch from localedef
|
* Makefile (install-locales): Remove the -u switch from localedef
|
||||||
|
|
|
||||||
|
|
@ -37,9 +37,9 @@ generate_locale ()
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo "Generating locale data: this might take a while..."
|
||||||
generate_locale UTF8 de_DE de_DE.UTF-8
|
generate_locale UTF8 de_DE de_DE.UTF-8
|
||||||
generate_locale ISO-8859-1 de_DE de_DE.ISO-8859-1
|
generate_locale ISO-8859-1 de_DE de_DE.ISO-8859-1
|
||||||
generate_locale ISO-8859-1 en_US en_US.ISO-8859-1
|
generate_locale ISO-8859-1 en_US en_US.ISO-8859-1
|
||||||
generate_locale EUC-JP ja_JP ja_JP.EUC-JP
|
generate_locale EUC-JP ja_JP ja_JP.EUC-JP
|
||||||
generate_locale ANSI_X3.4-1968 en_US en_US.ANSI_X3.4-1968
|
generate_locale ANSI_X3.4-1968 en_US en_US.ANSI_X3.4-1968
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,7 @@ CFLAGS-scheck.c = -Wno-strict-prototypes -DNOID
|
||||||
# leapseconds.
|
# leapseconds.
|
||||||
testdata = $(objpfx)testdata
|
testdata = $(objpfx)testdata
|
||||||
define build-testdata
|
define build-testdata
|
||||||
GCONV_PATH=${common-objpfx}iconvdata \
|
GCONV_PATH=${common-objpfx}iconvdata LANGUAGE=C LC_ALL=C \
|
||||||
$(built-program-cmd) -d $(testdata) -y ./yearistype $<
|
$(built-program-cmd) -d $(testdata) -y ./yearistype $<
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue