CustomTarget_html.mk |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit dc89de95c0858af3e6116f2d2b736787c30fe213
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Wed Jan 25 16:37:32 2023 +0100
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Wed Jan 25 15:42:03 2023 +0000

    Recipe has no dependency on target dir
    
    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 <sberg...@redhat.com>

diff --git a/CustomTarget_html.mk b/CustomTarget_html.mk
index 0e633d7b8d..e73ea160e0 100644
--- a/CustomTarget_html.mk
+++ b/CustomTarget_html.mk
@@ -191,6 +191,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 : \

Reply via email to