mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
1ef92d2423
We need to install to the sstate input dir and not the output dir, so sstate handling will work correctly. Signed-off-by: Stefan Müller-Klieser <s.mueller-klieser@phytec.de> Signed-off-by: Armin Kuster <akuster808@gmail.com>
16 lines
419 B
BlitzBasic
16 lines
419 B
BlitzBasic
require dfu-util_${PV}.bb
|
|
|
|
inherit native deploy
|
|
|
|
DEPENDS = "libusb1-native"
|
|
|
|
SRC_URI += "file://0001-Revert-Makefile.am-Drop-static-dfu-util.patch"
|
|
|
|
do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_TOOLS}"
|
|
do_deploy() {
|
|
install -m 0755 src/dfu-util_static ${DEPLOYDIR}/dfu-util-${PV}
|
|
rm -f ${DEPLOYDIR}/dfu-util
|
|
ln -sf ./dfu-util-${PV} ${DEPLOYDIR}/dfu-util
|
|
}
|
|
addtask deploy before do_package after do_install
|