Fix missing dependency of localedata tests on gconv-modules

This commit is contained in:
Paul Pluzhnikov 2010-03-17 09:01:34 -07:00 committed by Ulrich Drepper
parent 94308fd0e0
commit 234333153e
2 changed files with 9 additions and 0 deletions

View 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> 2010-02-03 Ulrich Drepper <drepper@redhat.com>
[BZ #10414] [BZ #10414]

View File

@ -107,6 +107,8 @@ install-others := $(addprefix $(inst_i18ndir)/, \
$(addsuffix .gz, $(charmaps)) \ $(addsuffix .gz, $(charmaps)) \
$(locales)) $(locales))
tests: $(objdir)/iconvdata/gconv-modules
include ../Rules include ../Rules
# Install the charmap files in gzipped format. # Install the charmap files in gzipped format.
@ -298,3 +300,6 @@ tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace \
LOCPATH=$(common-objpfx)localedata LOCPATH=$(common-objpfx)localedata
$(objpfx)mtrace-tst-leaks: $(objpfx)tst-leaks.out $(objpfx)mtrace-tst-leaks: $(objpfx)tst-leaks.out
$(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@ $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@
$(objdir)/iconvdata/gconv-modules:
$(MAKE) -C ../iconvdata subdir=iconvdata $@