diff options
author | Andreas Schwab <schwab@suse.de> | 2015-10-12 12:24:41 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2015-10-12 15:18:08 +0200 |
commit | f881f6ff62bba53448c5d8997287ea2e628b3a65 (patch) | |
tree | 404f7967786750db4513909c527088ff5783dd77 /time/Makefile | |
parent | c7b8939bf5646d1033375128f19261b401b9a0ce (diff) | |
download | glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.tar glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.tar.gz glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.tar.bz2 glibc-f881f6ff62bba53448c5d8997287ea2e628b3a65.zip |
Add dependencies on needed locales in each subdir tests (bug 18969)
Diffstat (limited to 'time/Makefile')
-rw-r--r-- | time/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/time/Makefile b/time/Makefile index a411f62042..933e70ea5f 100644 --- a/time/Makefile +++ b/time/Makefile @@ -41,6 +41,14 @@ tests := test_time clocktest tst-posixtz tst-strptime tst_wcsftime \ include ../Rules +ifeq ($(run-built-tests),yes) +LOCALES := de_DE.ISO-8859-1 en_US.ISO-8859-1 ja_JP.EUC-JP +include ../gen-locales.mk + +$(objpfx)tst-ftime_l.out: $(gen-locales) +$(objpfx)tst-strptime.out: $(gen-locales) +endif + tz-cflags = -DTZDIR='"$(zonedir)"' \ -DTZDEFAULT='"$(localtime-file)"' \ -DTZDEFRULES='"$(posixrules-file)"' |