diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 19:33:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 19:33:05 +0000 |
commit | a5707dad25fcc5093f9cc220226b142fae471718 (patch) | |
tree | 79e77e2376db710bf935386e584f6107e207cbe0 /localedata/Makefile | |
parent | 5ab0176021b51b2815ec44cc42ec8b82c6d6d0f2 (diff) | |
download | glibc-a5707dad25fcc5093f9cc220226b142fae471718.tar.gz |
Update.
2000-06-29 Ulrich Drepper <drepper@redhat.com>
* stdio-common/printf_fp.c (__printf_fp): Don't clobber pointer which
we later need to calling free().
Patch by Matt Wilson <msw@redhat.com>.
2000-06-27 David Mosberger-Tang <davidm@hpl.hp.com>
* sysdeps/unix/sysv/linux/ia64/bits/ipc.h: New file.
* sysdeps/unix/sysv/linux/ia64/bits/shm.h: New file.
2000-06-28 Jes Sorensen <jes@linuxcare.com>
* sysdeps/ieee754/dbl-64/s_exp2.c: Add include stdlib.h to get
prototype for abs().
* sysdeps/ieee754/flt-32/s_exp2f.c: ditto.
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index 97126bfd40..7658ff727a 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -135,10 +135,27 @@ do-tst-trans: tst-trans.sh $(objpfx)tst-trans do-tst-mbswcs: tst-mbswcs.sh $(objpfx)tst-mbswcs1 $(objpfx)tst-mbswcs2 \ $(objpfx)tst-mbswcs3 $(objpfx)tst-mbswcs4 $(objpfx)tst-mbswcs5 $(SHELL) -e $< $(common-objpfx) -do-tst-ctype: tst-ctype.sh $(objpfx)tst-ctype do-collate-test do-tst-mbswcs +do-tst-ctype: tst-ctype.sh $(objpfx)tst-ctype do-collate-test $(SHELL) -e $< $(common-objpfx) -$(addsuffix .out,$(addprefix $(objpfx),$(locale_test_suite))): %: do-tst-ctype\ - do-tst-mbswcs + +# Theses locales are generated by gen-locale.sh +LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 \ + en_US.ISO-8859-1 ja_JP.EUC-JP + +LOCALE_FILES := LC_ADDRESS LC_IDENTIFICATION LC_MONETARY LC_PAPER \ + LC_COLLATE LC_MEASUREMENT LC_NAME LC_TELEPHONE LC_CTYPE \ + LC_NUMERIC LC_TIME LC_MESSAGES/SYS_LC_MESSAGES + +ALL_LC_FILES := $(foreach locale, $(LOCALES), \ + $(addprefix $(locale)/, $(LOCALE_FILES))) + +ALL_OBJ_LC_FILES := $(addprefix $(objpfx), $(ALL_LC_FILES)) + +$(ALL_OBJ_LC_FILES): gen-locale.sh Makefile charmaps/* locales/* + $(SHELL) -e gen-locale.sh $(common-objpfx) + +$(addsuffix .out,$(addprefix $(objpfx),$(locale_test_suite))): %: $(ALL_OBJ_LC_FILES) + endif endif |