diff options
author | Jan Holesovsky <kendy@collabora.com> | 2015-01-22 10:52:18 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2015-01-22 10:53:00 +0100 |
commit | 49f26037faeff5f7f3c61e1ad6df974a2e32388d (patch) | |
tree | 0779dbfbcf2d39fdb00d70d661d7b07d7d539f99 /i18npool | |
parent | aa852c88c8312512e3595accefb9bc4d234a26a3 (diff) |
This can be called really early, create the dir.
Change-Id: Ie0097c20429104f10eb188ae0cbfcf5bc5a44e14
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/Library_i18npool.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/Library_i18npool.mk b/i18npool/Library_i18npool.mk index b66a2987e642..3c60ace8bf5a 100644 --- a/i18npool/Library_i18npool.mk +++ b/i18npool/Library_i18npool.mk @@ -127,7 +127,7 @@ i18npool_locale_pattern=$(WITH_LOCALES) $(addsuffix _%,$(WITH_LOCALES)) endif $(call gb_CustomTarget_get_workdir,i18npool/localedata)/localedata_static.hxx : $(SRCDIR)/i18npool/source/localedata/genstaticheader.pl - $(PERL) $(SRCDIR)/i18npool/source/localedata/genstaticheader.pl $(filter $(i18npool_locale_pattern),$(patsubst $(SRCDIR)/i18npool/source/localedata/data/%.xml,%,$(shell echo $(SRCDIR)/i18npool/source/localedata/data/*.xml))) >$@ + mkdir -p $(call gb_CustomTarget_get_workdir,i18npool/localedata) && $(PERL) $(SRCDIR)/i18npool/source/localedata/genstaticheader.pl $(filter $(i18npool_locale_pattern),$(patsubst $(SRCDIR)/i18npool/source/localedata/data/%.xml,%,$(shell echo $(SRCDIR)/i18npool/source/localedata/data/*.xml))) >$@ $(call gb_CxxObject_get_target,i18npool/source/localedata/localedata) : \ INCLUDE += -I$(call gb_CustomTarget_get_workdir,i18npool/localedata) |