diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-18 14:04:59 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-18 17:37:05 +0300 |
commit | 4ae8b026a4eb2fc3585c913d0d3a613ed14a8ba3 (patch) | |
tree | bb1f8fa3e463a78bf057e0d2139fa0b1173a1f42 /i18npool | |
parent | eab990db0a986c75ef49632f15ae84aa2d844123 (diff) |
Need to use cygpath on Windows
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/breakiterator/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/i18npool/source/breakiterator/Makefile b/i18npool/source/breakiterator/Makefile index c8e5d08fd05b..8800a4231eb1 100644 --- a/i18npool/source/breakiterator/Makefile +++ b/i18npool/source/breakiterator/Makefile @@ -37,8 +37,11 @@ data/dict_%.cxx : data/dict_%_invis.cxx sed 's/\tconst/\tSAL_DLLPUBLIC_EXPORT const/' $< > $@ data/dict_%_invis.cxx : $(realpath $(SRC_ROOT)/i18npool/source/breakiterator/data)/%.dic data +ifeq ($(OS_FOR_BUILD),WNT) + $(gb_Helper_execute)gendict `cygpath -m $<` $@ +else $(gb_Helper_execute)gendict $< $@ - +endif ifeq ($(SYSTEM_ICU),YES) GENBRK := $(SYSTEM_GENBRK) |