diff options
author | Jonathan Liu <net147@gmail.com> | 2016-02-28 00:46:47 +1100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2016-02-28 10:48:54 +0100 |
commit | 736e1ba03573a3163f81dff6971495ec15cba025 (patch) | |
tree | a8f5111f49e138e31bf3121e18abd75aac0ff024 /recipes-bsp | |
parent | 6726ffb4feb260664cb52f80b5c2568f8503eb40 (diff) | |
download | meta-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.bb | 4 |
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 = " \ | |||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | 16 | ||
17 | do_install () { | 17 | do_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 | ||
22 | BBCLASSEXTEND = "native" | 22 | BBCLASSEXTEND = "native" |