From 1dbf193bdb158dd54ff936426c25bc736d94f87f Mon Sep 17 00:00:00 2001 From: noreng-br Date: Wed, 10 Dec 2025 09:40:38 -0300 Subject: [PATCH] recipes-demos: Modify copy command and remove old source path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous copy command was not ignoring ocult subdirectories and the S path was using WORKDIR, both circumstances that were causing the bitbake build to fail. This modification ensures compatibility with the new version of yocto: "whinlatter". Signed-off-by: Vagner Nörnberg --- recipes-demos/html5-demo/html5-demo_git.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes-demos/html5-demo/html5-demo_git.bb b/recipes-demos/html5-demo/html5-demo_git.bb index eefde81..3008525 100644 --- a/recipes-demos/html5-demo/html5-demo_git.bb +++ b/recipes-demos/html5-demo/html5-demo_git.bb @@ -5,14 +5,12 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda SRC_URI = "git://github.com/OSSystems/${BPN}.git;protocol=https;branch=master" SRCREV = "e9ede7082b9e9e919e25b3a147d18e46dc3802f0" -S = "${WORKDIR}/git" - do_configure[noexec] = "1" do_compile[noexec] = "1" do_install() { install -d ${D}${datadir}/${PN} - cp -rf ${WORKDIR}/git/* ${D}${datadir}/${PN} + cp -r ${S}/* ${D}${datadir}/${PN} } FILES:${PN} += "${datadir}/${PN}"