[Libreoffice-commits] core.git: sw/CustomTarget_generated.mk
Jussi Pakkanen (via logerrit)
logerrit at kemper.freedesktop.org
Wed Feb 26 09:47:27 UTC 2020
sw/CustomTarget_generated.mk | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit c8d764b3f27c2bb0712745891b70630e94436317
Author: Jussi Pakkanen <jpakkane at gmail.com>
AuthorDate: Tue Feb 25 19:32:55 2020 +0200
Commit: Michael Stahl <michael.stahl at cib.de>
CommitDate: Wed Feb 26 10:46:48 2020 +0100
Add missing Python dependency to Makefile.
Change-Id: I9d1b37f0a9b47da53ee15ebf7d4b24f867dc274d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89474
Reviewed-by: Michael Stahl <michael.stahl at cib.de>
Tested-by: Jenkins
diff --git a/sw/CustomTarget_generated.mk b/sw/CustomTarget_generated.mk
index eafb8705564d..fb3f842d382a 100644
--- a/sw/CustomTarget_generated.mk
+++ b/sw/CustomTarget_generated.mk
@@ -13,11 +13,13 @@ sw_SRC := $(SRCDIR)/sw/source/core/swg
sw_PY := $(SRCDIR)/solenv/bin/gentoken.py
sw_INC := $(call gb_CustomTarget_get_workdir,sw/generated)
-$(sw_INC)/TextBlockTokens.gperf : $(sw_SRC)/TextBlockTokens.txt $(sw_PY)
+$(sw_INC)/TextBlockTokens.gperf : $(sw_SRC)/TextBlockTokens.txt $(sw_PY) \
+ $(call gb_ExternalExecutable_get_dependencies,python)
mkdir -p $(sw_INC)
$(PYTHON) $(sw_PY) $(sw_SRC)/TextBlockTokens.txt $(sw_INC)/TextBlockTokens.gperf
-$(sw_INC)/BlockListTokens.gperf : $(sw_SRC)/BlockListTokens.txt $(sw_PY)
+$(sw_INC)/BlockListTokens.gperf : $(sw_SRC)/BlockListTokens.txt $(sw_PY) \
+ $(call gb_ExternalExecutable_get_dependencies,python)
mkdir -p $(sw_INC)
$(PYTHON) $(sw_PY) $(sw_SRC)/BlockListTokens.txt $(sw_INC)/BlockListTokens.gperf
More information about the Libreoffice-commits
mailing list