From 31a3893974c6b54ada6102ee4128444373f0489a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 26 Feb 2013 17:17:17 +0100 Subject: Missing dependencies on xsltproc Change-Id: I6b8608c1bcb820b718b83d47a97212bcc9de3542 --- postprocess/CustomTarget_registry.mk | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index 19be15c67826..f2c798d81608 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -547,7 +547,8 @@ $(foreach lang,$(gb_Configuration_LANGS),$(eval $(call postprocess_lang_deps,$(l # Rules # -$(call gb_CustomTarget_get_workdir,postprocess/registry)/Langpack-%.xcd : +$(call gb_CustomTarget_get_workdir,postprocess/registry)/Langpack-%.xcd : \ + | $(call gb_ExternalExecutable_get_dependencies,xsltproc) $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XCD,3) $(call gb_Helper_abbreviate_dirs, \ $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --stringparam prefix $(call gb_XcuModuleTarget_get_outdir_target) -o $@ \ @@ -558,7 +559,8 @@ $(call gb_CustomTarget_get_workdir,postprocess/registry)/Langpack-%.list : $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,2) echo 'Langpack-$*.xcu' > $@ -$(call gb_CustomTarget_get_workdir,postprocess/registry)/fcfg_langpack_%.xcd : +$(call gb_CustomTarget_get_workdir,postprocess/registry)/fcfg_langpack_%.xcd : \ + | $(call gb_ExternalExecutable_get_dependencies,xsltproc) $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XCD,3) $(call gb_Helper_abbreviate_dirs, \ $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --stringparam prefix $(call gb_CustomTarget_get_workdir,postprocess/registry)/ \ @@ -580,7 +582,8 @@ $(call gb_CustomTarget_get_workdir,postprocess/registry)/fcfg_langpack_%.list : && echo '' >> $@ \ ) -$(call gb_CustomTarget_get_workdir,postprocess/registry)/registry_%.xcd : +$(call gb_CustomTarget_get_workdir,postprocess/registry)/registry_%.xcd : \ + | $(call gb_ExternalExecutable_get_dependencies,xsltproc) $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XCD,3) $(call gb_Helper_abbreviate_dirs, \ $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --stringparam prefix $(call gb_CustomTarget_get_workdir,postprocess/registry)/ \ @@ -623,7 +626,8 @@ ifeq ($(ENABLE_ONLINE_UPDATE),TRUE) endif echo '' >> $@ -$(call gb_CustomTarget_get_workdir,postprocess/registry)/%.xcd : +$(call gb_CustomTarget_get_workdir,postprocess/registry)/%.xcd : \ + | $(call gb_ExternalExecutable_get_dependencies,xsltproc) $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XCD,3) $(call gb_Helper_abbreviate_dirs, \ $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --stringparam prefix $(OUTDIR)/xml/ \ -- cgit