sw/CustomTarget_generated.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
New commits: commit c8d764b3f27c2bb0712745891b70630e94436317 Author: Jussi Pakkanen <[email protected]> AuthorDate: Tue Feb 25 19:32:55 2020 +0200 Commit: Michael Stahl <[email protected]> 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 <[email protected]> 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 _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
