diff options
-rw-r--r-- | meta-oe/recipes-support/reboot-mode/reboot-mode_git.bb | 4 |
1 files 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" | |||
10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
11 | 11 | ||
12 | do_compile() { | 12 | do_compile() { |
13 | ${CC} ${CFLAGS} ${LDFLAGS} reboot-mode.c -o reboot-mode | 13 | ${CC} ${CFLAGS} ${LDFLAGS} ${S}/reboot-mode.c -o ${B}/reboot-mode |
14 | } | 14 | } |
15 | 15 | ||
16 | do_install() { | 16 | do_install() { |
17 | install -D -m 0755 ${S}/reboot-mode ${D}${bindir}/reboot-mode | 17 | install -D -m 0755 ${B}/reboot-mode ${D}${bindir}/reboot-mode |
18 | } | 18 | } |