postprocess/CustomTarget_registry.mk |   12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

New commits:
commit 31a3893974c6b54ada6102ee4128444373f0489a
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Tue Feb 26 17:17:17 2013 +0100

    Missing dependencies on xsltproc
    
    Change-Id: I6b8608c1bcb820b718b83d47a97212bcc9de3542

diff --git a/postprocess/CustomTarget_registry.mk 
b/postprocess/CustomTarget_registry.mk
index 19be15c..f2c798d 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 '<list><dependency 
file="main"/><filename>Langpack-$*.xcu</filename></list>' > $@
 
-$(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 '</list>' >> $@ \
        )
 
-$(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 '</list>' >> $@
 
-$(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/ \
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to