From 5901286ae8c70224b9ffbd25eb4a1eca256dfddc Mon Sep 17 00:00:00 2001 From: "Rodrigo M. Duarte" Date: Fri, 20 Mar 2026 10:34:50 -0300 Subject: [PATCH] html5-demo: Remove S assignment from recipe S = "${UNPACKDIR}/git" should remove that assignment, as S set by bitbake.conf in oe-core now works. Signed-off-by: Rodrigo M. Duarte --- 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..db9bfff 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 -rf ${S}/* ${D}${datadir}/${PN} } FILES:${PN} += "${datadir}/${PN}"