diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-10 06:47:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-10 06:47:30 +0000 |
commit | aa97cce121d02ec55e603616b027d9a2ecec475c (patch) | |
tree | 89850bcc01af0ac69fe800460134e343ea267d36 /localedata | |
parent | cb09a2cda2e83d6002a41a5d5e5f37a925f52d51 (diff) | |
download | glibc-aa97cce121d02ec55e603616b027d9a2ecec475c.tar.gz glibc-aa97cce121d02ec55e603616b027d9a2ecec475c.tar.xz glibc-aa97cce121d02ec55e603616b027d9a2ecec475c.zip |
* sysdeps/unix/sysv/linux/ia64/syscalls.list (llseek): Add lseek
aliases. (lseek): Dummy. * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (llseek, lseek): Likewise. * locale/locarchive.h (struct locrecent): Add `refs' member.
Diffstat (limited to 'localedata')
-rw-r--r-- | localedata/ChangeLog | 5 | ||||
-rw-r--r-- | localedata/Makefile | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 34dbb07190..abefa10d75 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,8 @@ +2002-08-09 Roland McGrath <roland@redhat.com> + + * Makefile ($(INSTALL-SUPPORTED-LOCALES)): Pass --alias-file option to + localedef. + 2002-08-02 Ulrich Drepper <drepper@redhat.com> * locales/fa_IR: Fixing the Alef Hamza vs Waw Hamza ordering bug. diff --git a/localedata/Makefile b/localedata/Makefile index 99819855bb..60c69b2cf2 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -213,8 +213,9 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir echo -n `echo $$locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`; \ echo -n '...'; \ input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ - $(LOCALEDEF) -i locales/$$input -c -f charmaps/$$charset \ - $(addprefix --prefix=,$(install_root)) $$locale; \ + $(LOCALEDEF) --alias-file=../intl/locale.alias \ + -i locales/$$input -c -f charmaps/$$charset \ + $(addprefix --prefix=,$(install_root)) $$locale; \ echo ' done'; \ # The mbwc-tests need some environment setup to find the locale data files |