summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaciej Borzecki <maciej.borzecki@open-rnd.pl>2016-02-02 15:31:45 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2016-02-26 20:42:11 +0100
commit6bd39a61b7e7cceaafc6d14bd516dd5cb7ffbf5c (patch)
treee404d5bbe9324e4abe575776b38853fdd5c832ea
parent6314f668fa14473463bb777ffaf778333fea16eb (diff)
downloadmeta-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.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 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 = " \
15S = "${WORKDIR}/git" 15S = "${WORKDIR}/git"
16 16
17do_install () { 17do_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
22BBCLASSEXTEND = "native" 22BBCLASSEXTEND = "native"