diff options
-rw-r--r-- | localedata/ChangeLog | 4 | ||||
-rw-r--r-- | localedata/Makefile | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index cc47bba..4da53bc 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -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] diff --git a/localedata/Makefile b/localedata/Makefile index d364001..8f356ec 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 $@ |