From f6b3a82e1eb0cd140353dbc1b7e49432a82fd51d Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 31 Mar 2023 14:31:53 +0200 Subject: reboot-mode: put the build artifacts in ${B} We should output the compiled executables into ${B} and install them from it as well. Currently we put the build objects in the source directory. While at it: don't assume we're already in the source directory and instead prepend the source file with ${S}. Signed-off-by: Bartosz Golaszewski Signed-off-by: Khem Raj --- meta-oe/recipes-support/reboot-mode/reboot-mode_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-support/reboot-mode/reboot-mode_git.bb b/meta-oe/recipes-support/reboot-mode/reboot-mode_git.bb index 20e77c63dc..4c3436823a 100644 --- a/meta-oe/recipes-support/reboot-mode/reboot-mode_git.bb +++ b/meta-oe/recipes-support/reboot-mode/reboot-mode_git.bb @@ -10,9 +10,9 @@ SRCREV = "84831b20512abd9033414ca5f5a023f333525335" S = "${WORKDIR}/git" do_compile() { - ${CC} ${CFLAGS} ${LDFLAGS} reboot-mode.c -o reboot-mode + ${CC} ${CFLAGS} ${LDFLAGS} ${S}/reboot-mode.c -o ${B}/reboot-mode } do_install() { - install -D -m 0755 ${S}/reboot-mode ${D}${bindir}/reboot-mode + install -D -m 0755 ${B}/reboot-mode ${D}${bindir}/reboot-mode } -- cgit v1.2.3-54-g00ecf