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>
This commit is contained in:
Jonathan Liu 2016-02-28 00:46:47 +11:00 committed by Andrei Gherzan
parent 6726ffb4fe
commit 736e1ba035

View File

@ -15,8 +15,8 @@ SRC_URI = " \
S = "${WORKDIR}/git" S = "${WORKDIR}/git"
do_install () { do_install () {
install -d ${D}${libexecdir}/rpi-mkimage install -d ${D}${libexecdir}
install -t ${D}${libexecdir}/rpi-mkimage ./mkimage/* install -t ${D}${libexecdir} mkimage/*
} }
BBCLASSEXTEND = "native" BBCLASSEXTEND = "native"