diff options
Diffstat (limited to 'intl/Makefile')
-rw-r--r-- | intl/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/intl/Makefile b/intl/Makefile index 61ba07f62c..56769548b5 100644 --- a/intl/Makefile +++ b/intl/Makefile @@ -47,22 +47,27 @@ plural.c: plural.y endif $(objpfx)plural.o: plural.c -include ../Rules - ifeq ($(run-built-tests),yes) ifeq (yes,$(build-shared)) ifneq ($(strip $(MSGFMT)),:) -tests: $(objpfx)tst-translit.out $(objpfx)tst-gettext2.out \ - $(objpfx)tst-codeset.out $(objpfx)tst-gettext3.out +tests-special += $(objpfx)tst-translit.out $(objpfx)tst-gettext.out \ + $(objpfx)tst-gettext2.out $(objpfx)tst-codeset.out \ + $(objpfx)tst-gettext3.out ifeq ($(have-thread-library),yes) -tests: $(objpfx)tst-gettext4.out $(objpfx)tst-gettext5.out \ - $(objpfx)tst-gettext6.out +tests-special += $(objpfx)tst-gettext4.out $(objpfx)tst-gettext5.out \ + $(objpfx)tst-gettext6.out endif ifneq (no,$(PERL)) -tests: $(objpfx)mtrace-tst-gettext +tests-special += $(objpfx)mtrace-tst-gettext +endif +endif endif endif +include ../Rules + +ifeq ($(run-built-tests),yes) +ifeq (yes,$(build-shared)) # Multiple tests use this data. Create it once to avoid racing and # spurious test failures. codeset_mo = $(objpfx)domaindir/de_DE/LC_MESSAGES/codeset.mo |