diff options
author | David Tardon <dtardon@redhat.com> | 2013-04-16 18:04:19 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-04-16 18:04:19 +0200 |
commit | 41dc2dbc6d5d87f9f008ab140a0cd2b41fcc8fa5 (patch) | |
tree | 82320360e2697666aff4615a9add6596e062c322 /solenv/gbuild/Dictionary.mk | |
parent | 163a64ef2610f2f3e1f3a9acc5bf1e9545b02ffe (diff) |
Revert "add spec. handling for xcu files to gb_Dictionary"
Michael was faster :-)
This reverts commit 28709dc607dc8738f5048429940b3f3232d52e12.
Diffstat (limited to 'solenv/gbuild/Dictionary.mk')
-rw-r--r-- | solenv/gbuild/Dictionary.mk | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/solenv/gbuild/Dictionary.mk b/solenv/gbuild/Dictionary.mk index 60f72d0fff34..f525ba146d87 100644 --- a/solenv/gbuild/Dictionary.mk +++ b/solenv/gbuild/Dictionary.mk @@ -385,28 +385,4 @@ $(foreach propertyfile,$(3),$(call gb_Dictionary_add_propertyfile,$(1),$(2)/$(no endef -# Add a configuration file to the dictionary. -# -# HACK: The xcu file might come from $(WORKDIR), if we are building with -# langs (because it is localized then), or from $(SRCDIR), if we are -# not. So we must handle it specially. -# -# gb_Dictionary_add_xcufile dictionary destfile xcufile -define gb_Dictionary_add_xcufile -ifeq ($(gb_WITH_LANG),) -$(call gb_Dictionary_add_file,$(1),$(2),$(3)) -else -$(call gb_Dictionary_add_generated_file,$(1),$(2),$(call gb_XcuMergeTarget_get_target,$(3))) -endif - -endef - -# Add several configuration file to the dictionary at once. -# -# gb_Dictionary_add_xcufiles dictionary destdir xcufile(s) -define gb_Dictionary_add_xcufiles -$(foreach xcufile,$(3),$(call gb_Dictionary_add_xcufile,$(1),$(2)/$(notdir $(xcufile)),$(xcufile))) - -endef - # vim: set noet sw=4 ts=4: |