summaryrefslogtreecommitdiffstats
path: root/recipes-bsp
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2016-02-28 00:46:47 +1100
committerAndrei Gherzan <andrei@gherzan.ro>2016-02-28 10:48:54 +0100
commit736e1ba03573a3163f81dff6971495ec15cba025 (patch)
treea8f5111f49e138e31bf3121e18abd75aac0ff024 /recipes-bsp
parent6726ffb4feb260664cb52f80b5c2568f8503eb40 (diff)
downloadmeta-raspberrypi-736e1ba03573a3163f81dff6971495ec15cba025.tar.gz
rpi-mkimage: install to ${libexecdir}
It doesn't make sense to install to ${libexecdir}/rpi-mkimage as it changes the path on fido and earlier branches from: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage to: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage/rpi-mkimage Using ${libexecdir} instead of ${libexecdir}/rpi-mkimage preserves the path for fido and earlier. Signed-off-by: Jonathan Liu <net147@gmail.com>
Diffstat (limited to 'recipes-bsp')
-rw-r--r--recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb b/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb
index 2c8ecb1..7dea43d 100644
--- a/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb
+++ b/recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb
@@ -15,8 +15,8 @@ SRC_URI = " \
15S = "${WORKDIR}/git" 15S = "${WORKDIR}/git"
16 16
17do_install () { 17do_install () {
18 install -d ${D}${libexecdir}/rpi-mkimage 18 install -d ${D}${libexecdir}
19 install -t ${D}${libexecdir}/rpi-mkimage ./mkimage/* 19 install -t ${D}${libexecdir} mkimage/*
20} 20}
21 21
22BBCLASSEXTEND = "native" 22BBCLASSEXTEND = "native"