summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-02-27 17:51:53 +0100
committerMichael Stahl <mstahl@redhat.com>2014-02-27 18:09:03 +0100
commitc3bdaca0e6c26775fae7f682732251a8e72cff30 (patch)
tree64a77c461fe519d02912031a6bb82700b116119f /i18npool
parentbb1b45f1905549ad654564f8e5a12d19bfce60ff (diff)
normalize values of ICU_RECLASSIFIED_*
Change-Id: I1033676fe91062b1d364a458a5964cfb78f323f0
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/CustomTarget_breakiterator.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/CustomTarget_breakiterator.mk b/i18npool/CustomTarget_breakiterator.mk
index e01e5439422f..dbe6ab223531 100644
--- a/i18npool/CustomTarget_breakiterator.mk
+++ b/i18npool/CustomTarget_breakiterator.mk
@@ -78,12 +78,12 @@ $(i18npool_BIDIR)/%.brk : $(i18npool_BIDIR)/%.txt $(call gb_ExternalExecutable_g
$(i18npool_BIDIR)/%.txt : \
$(SRCDIR)/i18npool/source/breakiterator/data/%.txt | $(i18npool_BIDIR)/.dir
sed -e ': dummy' \
- $(if $(filter YES,$(ICU_RECLASSIFIED_CLOSE_PARENTHESIS)),-e "s#\[:LineBreak = Close_Punctuation:\]#\[& \[:LineBreak = Close_Parenthesis:\]\]#") \
- $(if $(filter-out YES,$(ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER)),\
+ $(if $(ICU_RECLASSIFIED_CLOSE_PARENTHESIS),-e "s#\[:LineBreak = Close_Punctuation:\]#\[& \[:LineBreak = Close_Parenthesis:\]\]#") \
+ $(if $(ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER),,\
-e '/\[:LineBreak = Conditional_Japanese_Starter:\]/d' \
-e 's# $$CJ##' \
) \
- $(if $(filter-out YES,$(ICU_RECLASSIFIED_HEBREW_LETTER)),\
+ $(if $(ICU_RECLASSIFIED_HEBREW_LETTER),,\
-e '/\[:LineBreak = Hebrew_Letter:\]/d' \
-e '/^$$HLcm =/d' \
-e '/^$$HLcm $$NUcm;/d' \
@@ -93,7 +93,7 @@ $(i18npool_BIDIR)/%.txt : \
-e 's#$$HLcm ##g' \
-e 's# $$HL##g' \
) \
- $(if $(filter YES,$(ICU_RECLASSIFIED_PREPEND_SET_EMPTY)),-e "/Prepend/d") \
+ $(if $(ICU_RECLASSIFIED_PREPEND_SET_EMPTY),-e "/Prepend/d") \
$< > $@
# vim: set noet sw=4 ts=4: