diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-10 11:26:05 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-10 13:37:56 +0100 |
commit | 8dd784b2dd77304a7bee784a40a1c1ca37917015 (patch) | |
tree | 623fd75416a4ce9a49634eea71b9a3cbb539a80a | |
parent | 68aa8a24b1af1e6eff36c44f9c2722869bcaa855 (diff) | |
download | poky-8dd784b2dd77304a7bee784a40a1c1ca37917015.tar.gz |
skeleton/baremetal-helloworld: Fix trailing slash
This fixes a warning about a trailing slash on ${S}.
(From OE-Core rev: 0685dac31a7ae614d9f75cd51b59c45dd050f52e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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}" | |||
8 | 8 | ||
9 | SRC_URI = "git://github.com/aehs29/baremetal-helloqemu.git;protocol=https;branch=master" | 9 | SRC_URI = "git://github.com/aehs29/baremetal-helloqemu.git;protocol=https;branch=master" |
10 | 10 | ||
11 | S = "${WORKDIR}/git/" | 11 | S = "${WORKDIR}/git" |
12 | 12 | ||
13 | # The following variables should be set to accomodate each application | 13 | # The following variables should be set to accomodate each application |
14 | BAREMETAL_BINNAME ?= "hello_baremetal_${MACHINE}" | 14 | BAREMETAL_BINNAME ?= "hello_baremetal_${MACHINE}" |