diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-01-25 16:37:32 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2023-07-08 20:38:27 +0200 |
commit | fe1b8667185f80da11e6aa61c168b2237cfb1fcf (patch) | |
tree | 1dd1f32a763cfba240f0b492ed8670544bdc99c3 | |
parent | ef9373c51bf93270afb3eeaa89148b228ae820e2 (diff) |
Recipe has no dependency on target dircp-23.05.4-2cp-23.05.4-1cp-23.05.3-1co-23.05.4-2co-23.05.2-3co-23.05.2-2
Seen this fail once at
<https://buildbot.flathub.org/#/builders/31/builds/1623>,
> cp: cannot create regular file '/run/build/libreoffice/workdir/CustomTarget/helpcontent2/help3xsl/online_transform.xsl': No such file or directory
> make[1]: *** [/run/build/libreoffice/helpcontent2/CustomTarget_html.mk:186: /run/build/libreoffice/workdir/CustomTarget/helpcontent2/help3xsl/online_transform.xsl] Error 1
Change-Id: I8cfa387d1bb2ef488f5f34ff20b9dc975d424751
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/146141
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
(cherry picked from commit dc89de95c0858af3e6116f2d2b736787c30fe213)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/153765
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
-rw-r--r-- | CustomTarget_html.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk index b68a91d422..627623aa2a 100644 --- a/CustomTarget_html.mk +++ b/CustomTarget_html.mk @@ -183,6 +183,7 @@ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/%/contents.part : \ # copy online_transform.xsl to workdir and build links.txt.xsl $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/online_transform.xsl : \ $(SRCDIR)/helpcontent2/help3xsl/online_transform.xsl + mkdir -p $(dir $@) cp $(SRCDIR)/helpcontent2/help3xsl/online_transform.xsl $@ $(call gb_CustomTarget_get_workdir,helpcontent2/help3xsl)/links.txt.xsl : \ |