diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-04-11 16:24:35 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-04-12 20:53:14 +0200 |
commit | 5dce272584cc79da727bdd4887d60cec04cbce11 (patch) | |
tree | b7b63d5565de229102420e9028422d55a791aa2f /i18npool | |
parent | 62640a8436c837db6d1f63d98585b9929c36682d (diff) |
move dependency on localedata_en to i18npool
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/Library_i18npool.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/i18npool/Library_i18npool.mk b/i18npool/Library_i18npool.mk index 5ba850beca5d..96ac0c889e3a 100644 --- a/i18npool/Library_i18npool.mk +++ b/i18npool/Library_i18npool.mk @@ -148,4 +148,13 @@ $(eval $(call gb_Library_add_generated_cobjects,i18npool,\ CustomTarget/i18npool/breakiterator/$(notdir $(basename $(txt)))_brk) \ )) +# i18npool dlopens localedata_* libraries. +# This is runtime dependency to prevent tests +# to be run sooner then localedata_* exists. +$(call gb_Library_get_target,i18npool) : \ + $(call gb_Library_get_target,localedata_en) \ + $(call gb_Library_get_target,localedata_es) \ + $(call gb_Library_get_target,localedata_euro) \ + $(call gb_Library_get_target,localedata_others) \ + # vim: set noet sw=4 ts=4: |