From 3af4293be87177dba55942395df5339f3bbdeb34 Mon Sep 17 00:00:00 2001 From: Christophe Priouzeau Date: Tue, 27 Oct 2020 11:42:56 +0100 Subject: [PATCH] stm32wrapper4dbg: correct path issue Provide directory path to stm32wrapper4dbg. Suggested-by: https://github.com/STMicroelectronics/meta-st-stm32mp/pull/19 Change-Id: I3531b08205b583be8a896cab136ea9ef34e9216d --- recipes-devtools/stm32wrapper4dbg/stm32wrapper4dbg_1.0.0.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipes-devtools/stm32wrapper4dbg/stm32wrapper4dbg_1.0.0.inc b/recipes-devtools/stm32wrapper4dbg/stm32wrapper4dbg_1.0.0.inc index 433bf81..c5a90da 100644 --- a/recipes-devtools/stm32wrapper4dbg/stm32wrapper4dbg_1.0.0.inc +++ b/recipes-devtools/stm32wrapper4dbg/stm32wrapper4dbg_1.0.0.inc @@ -3,12 +3,13 @@ LICENSE = "GPLv2+ | BSD-3-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=7c996e24cb10a869efb08b521b20242f" SRC_URI = "git://github.com/STMicroelectronics/stm32wrapper4dbg;protocol=https;branch=master" -SRCREV = "4b3887fa31754825b63608b7c88ce4cab472f6fd" +SRCREV = "3ee9fa433bd9ee5f167ec969c91e00a55bb06c4b" S = "${WORKDIR}/git" SECTION = "devel" do_install() { - install -D -m 0755 stm32wrapper4dbg -t ${D}${bindir} + install -d ${D}${bindir} + install -m 0755 ${S}/stm32wrapper4dbg -t ${D}${bindir} }