Fix missing dependency of localedata tests on gconv-modules
authorPaul Pluzhnikov <ppluzhnikov@google.com>
Wed, 17 Mar 2010 16:01:34 +0000 (09:01 -0700)
committerUlrich Drepper <drepper@redhat.com>
Wed, 17 Mar 2010 16:01:34 +0000 (09:01 -0700)
localedata/ChangeLog
localedata/Makefile

index cc47bba..4da53bc 100644 (file)
@@ -1,3 +1,7 @@
+2010-02-16  Paul Pluzhnikov  <ppluzhnikov@google.com>
+
+       * Makefile: Add missing gconv-modules dependency.
+
 2010-02-03  Ulrich Drepper  <drepper@redhat.com>
 
        [BZ #10414]
index d364001..8f356ec 100644 (file)
@@ -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 $@