diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-13 16:04:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-13 18:23:15 +0100 |
commit | 35f5c97bbb28aba47ca6f6c59d62b8c25f9daf3b (patch) | |
tree | 431d7f3d5d21d597c7c0e8be8cba0739e134e2dc /postprocess | |
parent | ef306b501224175c013f65b02748e1dab850be1f (diff) |
Resolves: tdf#124023 target links.txt not updated
when source links.txt changes
Change-Id: I90e9b64fdd01ff725149cc6d07d3ea6c28b50156
Reviewed-on: https://gerrit.libreoffice.org/69202
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/CustomTarget_images.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/postprocess/CustomTarget_images.mk b/postprocess/CustomTarget_images.mk index 0ecd76d37035..5ad55799e1e1 100644 --- a/postprocess/CustomTarget_images.mk +++ b/postprocess/CustomTarget_images.mk @@ -23,7 +23,9 @@ $(eval $(call gb_CustomTarget_register_targets,postprocess/images,\ $(packimages_DIR)/images.zip : DEFAULT_THEME := $(true) $(packimages_DIR)/images_%.zip : DEFAULT_THEME := -$(packimages_DIR)/%_links.txt : +# tdf#124023 make links.txt depend on phony sorted.lst depend +# so this is evaluated every time +$(packimages_DIR)/%_links.txt : $(packimages_DIR)/sorted.lst @if test -f "$(SRCDIR)/icon-themes/$*/links.txt"; then \ cp "$(SRCDIR)/icon-themes/$*/links.txt" $@.tmp ; \ else \ |