summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-12-02 13:33:49 +0100
committerGyorgy Sarvari <skandigraun@gmail.com>2025-12-02 13:54:02 +0100
commitbc55ba3d8cb0e5e828ffbeb8ad033185a4d842b6 (patch)
tree5c78d460c08fc19695450825a369e3542ceee287 /meta-networking/recipes-protocols
parent6416254c0b6c51aadc4838b6083ed12f212e0d38 (diff)
downloadmeta-openembedded-bc55ba3d8cb0e5e828ffbeb8ad033185a4d842b6.tar.gz
babeld: fix installation with usrmerge
In case usrmerge DISTRO_FEATURE is enabled, the recipe installed the application to /bin folder, which is however a symlink to /usr/bin, so the installation ultimately failed. To fix this, set the correct prefix for the installation. This is a partial backport of f91983f1f3e897d25ab477fdfb5baed89ccc0daf Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Diffstat (limited to 'meta-networking/recipes-protocols')
-rw-r--r--meta-networking/recipes-protocols/babeld/babeld_1.10.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-protocols/babeld/babeld_1.10.bb b/meta-networking/recipes-protocols/babeld/babeld_1.10.bb
index 529cccf872..79b954478f 100644
--- a/meta-networking/recipes-protocols/babeld/babeld_1.10.bb
+++ b/meta-networking/recipes-protocols/babeld/babeld_1.10.bb
@@ -24,6 +24,6 @@ do_compile () {
24} 24}
25 25
26do_install () { 26do_install () {
27 oe_runmake install.minimal PREFIX=${D} 27 oe_runmake install.minimal TARGET=${D} PREFIX=${root_prefix}
28} 28}
29 29