From: Richard Purdie Date: Sat, 10 Oct 2020 10:26:05 +0000 (+0100) Subject: skeleton/baremetal-helloworld: Fix trailing slash X-Git-Tag: 2020-10-gatesgarth~69 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=0685dac31a7ae614d9f75cd51b59c45dd050f52e;p=openembedded-core.git skeleton/baremetal-helloworld: Fix trailing slash This fixes a warning about a trailing slash on ${S}. Signed-off-by: Richard Purdie --- diff --git a/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb b/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb index 3acc523a88..7a580bd885 100644 --- a/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb +++ b/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb @@ -8,7 +8,7 @@ PV = "0.1+git${SRCPV}" SRC_URI = "git://github.com/aehs29/baremetal-helloqemu.git;protocol=https;branch=master" -S = "${WORKDIR}/git/" +S = "${WORKDIR}/git" # The following variables should be set to accomodate each application BAREMETAL_BINNAME ?= "hello_baremetal_${MACHINE}"