From: Denys Dmytriyenko <[email protected]> As part of replacing hard-coded /lib with ${base_libdir}, rpmsg_lib.lib was also mistakenly moved from ${libdir} to ${base_libdir}, which is incorrect and breaks other recipes, when they try to link against this library from ${libdir}.
Signed-off-by: Denys Dmytriyenko <[email protected]> --- recipes-bsp/pru/pru-icss_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/pru/pru-icss_git.bb b/recipes-bsp/pru/pru-icss_git.bb index eda235d..c74a15d 100644 --- a/recipes-bsp/pru/pru-icss_git.bb +++ b/recipes-bsp/pru/pru-icss_git.bb @@ -56,8 +56,8 @@ do_install() { install -d ${D}${base_libdir}/firmware/pru install -d ${D}${includedir} cp ${CP_ARGS} ${S}/include/* ${D}${includedir} - install -d ${D}${base_libdir} - install -m 0644 ${S}/lib/rpmsg_lib.lib ${D}${base_libdir} + install -d ${D}${libdir} + install -m 0644 ${S}/lib/rpmsg_lib.lib ${D}${libdir} } FILES_${PN}-staticdev = "${libdir}" -- 2.7.4
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13074): https://lists.yoctoproject.org/g/meta-ti/message/13074 Mute This Topic: https://lists.yoctoproject.org/mt/76275306/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
