From 6bd39a61b7e7cceaafc6d14bd516dd5cb7ffbf5c Mon Sep 17 00:00:00 2001 From: Maciej Borzecki Date: Tue, 2 Feb 2016 15:31:45 +0100 Subject: 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 --- recipes-bsp/rpi-mkimage/rpi-mkimage_git.bb | 4 ++-- 1 file 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 = " \ S = "${WORKDIR}/git" do_install () { - install -d ${D}${libexecdir} - cp ./mkimage/* ${D}${libexecdir} + install -d ${D}${libexecdir}/rpi-mkimage + install -t ${D}${libexecdir}/rpi-mkimage ./mkimage/* } BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf