From c2eca359af3eb88ebde341df5b87c24e178f5d5c Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sun, 2 Dec 2012 10:51:37 +0100 Subject: move setting up of ext. executables out of gbuild.mk Change-Id: Icacd44abfa5bf5f75f0ee719b39fba6821976a8a --- extras/CustomTarget_autocorr.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'extras') diff --git a/extras/CustomTarget_autocorr.mk b/extras/CustomTarget_autocorr.mk index e621b348542f..0c6809bc7a66 100644 --- a/extras/CustomTarget_autocorr.mk +++ b/extras/CustomTarget_autocorr.mk @@ -281,9 +281,10 @@ $(call gb_CustomTarget_get_workdir,extras/source/autotext)/%/mimetype : $(SRCDIR $(call gb_Output_announce,$*/mimetype,$(true),CPY,1) cp $< $@ -$(call gb_CustomTarget_get_workdir,extras/source/autotext)/%.xml : $(SRCDIR)/extras/source/autotext/lang/%.xml +$(call gb_CustomTarget_get_workdir,extras/source/autotext)/%.xml : $(SRCDIR)/extras/source/autotext/lang/%.xml \ + | $(call gb_ExternalExecutable_get_deps,xsltproc) $(call gb_Output_announce,$*.xml,$(true),XSL,1) - $(gb_XSLTPROC) -o $@ $(SRCDIR)/extras/util/compact.xsl $< + $(call gb_ExternalExecutable_get_command,xsltproc) -o $@ $(SRCDIR)/extras/util/compact.xsl $< $(call gb_CustomTarget_get_workdir,extras/source/autotext)/%.dat : $(call gb_Output_announce,$*.dat,$(true),ZIP,2) -- cgit