summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex@linutronix.de>2025-06-06 22:58:05 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-09 17:43:41 +0100
commit637de32065f17dac0aafa3369873b73284c987dc (patch)
tree34e4149c59a8a09c4af98ff747d1615476a29de8
parente493ed85a374af77d922eb915c5b8d9bb7b78e71 (diff)
downloadpoky-637de32065f17dac0aafa3369873b73284c987dc.tar.gz
kea: correctly eliminate build host paths from installed file
Only the ${B} part should be trimmed, not what follows (which is subject to change, depending on where the sources are). (From OE-Core rev: 1e3fc9b7592956af9bd93e0a077c5b9f3fd9ca2e) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-connectivity/kea/kea_2.6.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/kea/kea_2.6.1.bb b/meta/recipes-connectivity/kea/kea_2.6.1.bb
index ff7fb51fe0..17e4378746 100644
--- a/meta/recipes-connectivity/kea/kea_2.6.1.bb
+++ b/meta/recipes-connectivity/kea/kea_2.6.1.bb
@@ -69,7 +69,7 @@ do_install:append() {
69 sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@BASE_BINDIR@,${base_bindir},g' \ 69 sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@BASE_BINDIR@,${base_bindir},g' \
70 -e 's,@LOCALSTATEDIR@,${localstatedir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' \ 70 -e 's,@LOCALSTATEDIR@,${localstatedir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' \
71 ${D}${systemd_system_unitdir}/kea-dhcp*service ${D}${sbindir}/keactrl 71 ${D}${systemd_system_unitdir}/kea-dhcp*service ${D}${sbindir}/keactrl
72 sed -i "s:${B}/../${BPN}-${PV}:@abs_top_builddir_placeholder@:g" ${D}${sbindir}/kea-admin 72 sed -i "s:${B}:@abs_top_builddir_placeholder@:g" ${D}${sbindir}/kea-admin
73} 73}
74 74
75do_install:append() { 75do_install:append() {