summaryrefslogtreecommitdiff
path: root/i18npool/CustomTarget_textconversion.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-05-09 23:15:42 +0200
committerMichael Stahl <mstahl@redhat.com>2012-05-10 10:47:44 +0200
commita9550f63cd7a7e064901b2c997375ed384781eea (patch)
treeb35a7bf6077c5b40390cbde11dffe30ef90d57c9 /i18npool/CustomTarget_textconversion.mk
parentce1ac0851fe2e975f3fb47178730b914608610cf (diff)
normalize variable names in gbuild user makefiles
Variables should have module name as prefix to prevent collisions.
Diffstat (limited to 'i18npool/CustomTarget_textconversion.mk')
-rw-r--r--i18npool/CustomTarget_textconversion.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/CustomTarget_textconversion.mk b/i18npool/CustomTarget_textconversion.mk
index 6a5f10d79468..30dc2d767244 100644
--- a/i18npool/CustomTarget_textconversion.mk
+++ b/i18npool/CustomTarget_textconversion.mk
@@ -28,14 +28,14 @@
$(eval $(call gb_CustomTarget_CustomTarget,i18npool/textconversion))
-IPTC := $(call gb_CustomTarget_get_workdir,i18npool/textconversion)
-
$(call gb_CustomTarget_get_target,i18npool/textconversion) : \
- $(patsubst %.dic,$(IPTC)/%.cxx,$(notdir \
+ $(patsubst %.dic,$(call gb_CustomTarget_get_workdir,i18npool/textconversion)/%.cxx,$(notdir \
$(wildcard $(SRCDIR)/i18npool/source/textconversion/data/*.dic)))
-$(IPTC)/%.cxx : $(SRCDIR)/i18npool/source/textconversion/data/%.dic \
- $(call gb_Executable_get_target_for_build,genconv_dict) | $(IPTC)/.dir
+$(call gb_CustomTarget_get_workdir,i18npool/textconversion)/%.cxx : \
+ $(SRCDIR)/i18npool/source/textconversion/data/%.dic \
+ $(call gb_Executable_get_target_for_build,genconv_dict) \
+ | $(call gb_CustomTarget_get_workdir,i18npool/textconversion)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CDC,1)
$(call gb_Helper_abbreviate_dirs, \
$(call gb_Helper_execute,genconv_dict) $* $< $@.tmp && \