diff options
author | Maciej Borzecki <maciej.borzecki@open-rnd.pl> | 2016-02-02 15:31:45 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2016-02-26 20:42:11 +0100 |
commit | 6bd39a61b7e7cceaafc6d14bd516dd5cb7ffbf5c (patch) | |
tree | e404d5bbe9324e4abe575776b38853fdd5c832ea | |
parent | 6314f668fa14473463bb777ffaf778333fea16eb (diff) | |
download | meta-raspberrypi-6bd39a61b7e7cceaafc6d14bd516dd5cb7ffbf5c.tar.gz |
rpi-mkimage: install tools under {libexecdir}/rpi-mkimage
For consistency with other recipes that look for mkimage
tools (u-boot-rpi, linux-raspberrypi) under ${libexecdir}/rpi-mkimage,
make sure that the tools are installed at the proper location.
Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
-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 ffcaa83..2c8ecb1 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} | 18 | install -d ${D}${libexecdir}/rpi-mkimage |
19 | cp ./mkimage/* ${D}${libexecdir} | 19 | install -t ${D}${libexecdir}/rpi-mkimage ./mkimage/* |
20 | } | 20 | } |
21 | 21 | ||
22 | BBCLASSEXTEND = "native" | 22 | BBCLASSEXTEND = "native" |