about summary refs log tree commit diff
path: root/localedata/Makefile
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2010-03-17 09:01:34 -0700
committerPetr Baudis <pasky@ucw.cz>2010-05-12 02:17:09 +0200
commit877103176f621c64bdd847e2db49205de7e32e61 (patch)
tree1eb3b5f1aaf9aeb01caa0118d86cd9c0dd1918cb /localedata/Makefile
parent7dab764e6058b7383d76f0ba2b63ae3afbafd4ba (diff)
downloadglibc-877103176f621c64bdd847e2db49205de7e32e61.tar.gz
glibc-877103176f621c64bdd847e2db49205de7e32e61.tar.xz
glibc-877103176f621c64bdd847e2db49205de7e32e61.zip
Fix missing dependency of localedata tests on gconv-modules
(cherry picked from commit 234333153e5b29fec2c0b383249db6f245a877e9)
Diffstat (limited to 'localedata/Makefile')
-rw-r--r--localedata/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/localedata/Makefile b/localedata/Makefile
index d364001551..8f356ec861 100644
--- a/localedata/Makefile
+++ b/localedata/Makefile
@@ -107,6 +107,8 @@ install-others := $(addprefix $(inst_i18ndir)/, \
 			      $(addsuffix .gz, $(charmaps)) \
 			      $(locales))
 
+tests: $(objdir)/iconvdata/gconv-modules
+
 include ../Rules
 
 # Install the charmap files in gzipped format.
@@ -298,3 +300,6 @@ tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace \
 		LOCPATH=$(common-objpfx)localedata
 $(objpfx)mtrace-tst-leaks: $(objpfx)tst-leaks.out
 	$(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@
+
+$(objdir)/iconvdata/gconv-modules:
+	$(MAKE) -C ../iconvdata subdir=iconvdata $@