From 0c4c84a14b01c71c76a9c45a7f26aec4d64f3e4f Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Thu, 2 May 2024 11:19:38 +0200 Subject: makefile simplification: replace $(call gb_CustomTarget_get_workdir,foo) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …by a simple/static $(gb_CustomTarget_workdir)/foo The build system has a lot of overly complicated leftovers from when it was introduced and had not only deal with split repositories but also had to coexist with another buildsystem. Along with lots of copy'n'paste along the years the makefiles became hard to grasp for newcomers with all our calls and evals. As a first step to streamline that, the macros from TargetLocations that simply prefix a static path to the argument (and similar of the same kind) are a natural pick before simplifying the rules themselves/getting rid of a bunch of eval statements. Change-Id: Ia06dbbcd5d1994755a2ff05b84f72ccbc4e3cab5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167005 Tested-by: Jenkins Reviewed-by: Christian Lohmaier --- editeng/CustomTarget_generated.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editeng') diff --git a/editeng/CustomTarget_generated.mk b/editeng/CustomTarget_generated.mk index fe7aa10ae18a..bbdc75fcf53a 100644 --- a/editeng/CustomTarget_generated.mk +++ b/editeng/CustomTarget_generated.mk @@ -11,7 +11,7 @@ $(eval $(call gb_CustomTarget_CustomTarget,editeng/generated)) editeng_SRC := $(SRCDIR)/editeng/source/misc editeng_PY := $(SRCDIR)/solenv/bin/gentoken.py -editeng_INC := $(call gb_CustomTarget_get_workdir,editeng/generated) +editeng_INC := $(gb_CustomTarget_workdir)/editeng/generated $(editeng_INC)/tokens.hxx $(editeng_INC)/tokens.gperf : $(editeng_SRC)/tokens.txt $(editeng_PY) \ $(call gb_ExternalExecutable_get_dependencies,python) -- cgit stro/cib/libreoffice-6-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-06-25Initialize the font list before querying itJan-Marek Glogowski
2018-05-08Refactor CommonSalLayout font handlingJan-Marek Glogowski
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky