diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2024-06-12 14:11:29 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2024-06-19 16:16:05 +0200 |
commit | 0740c9cde9ad77a2fbdd3429be1fbd98e1943fd4 (patch) | |
tree | 0a9cc92a3a959895ee8dd046f3ba32bfcd09081b /static | |
parent | 86cd6036273a9031212e131141c03ed4e16e011b (diff) |
makefile simplification: replace $(call gb_AutoInstall_get_target,foo)
by a simple/static $(gb_AutoInstall_targetdir)/foo and also drop the
custom .dir target
Change-Id: I4893c2675cb076cb8a0b61c0c207a223658b43d5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168709
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'static')
-rw-r--r-- | static/CustomTarget_emscripten_fs_image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/CustomTarget_emscripten_fs_image.mk b/static/CustomTarget_emscripten_fs_image.mk index b82dcff82aa7..46f587118c88 100644 --- a/static/CustomTarget_emscripten_fs_image.mk +++ b/static/CustomTarget_emscripten_fs_image.mk @@ -1477,7 +1477,7 @@ $(foreach theme,$(WITH_THEMES), \ $(eval gb_emscripten_fs_image_files += $(INSTROOT)/$(LIBO_SHARE_FOLDER)/config/images_$(theme).zip)) ifeq ($(WITH_FONTS),TRUE) -gb_emscripten_fs_image_autoinstall += $(call gb_AutoInstall_get_target,ooo_fonts) +gb_emscripten_fs_image_autoinstall += $(gb_AutoInstall_targetdir)/ooo_fonts endif gb_emscripten_fs_image_filelists += $(call gb_Package_get_target,liblangtag_data) |