diff options
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 |