1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-20 19:53:43 +00:00

pru-icss: revert part of the last change that moved rpmsg_lib.lib to base_libdir

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 <denys@ti.com>
This commit is contained in:
Denys Dmytriyenko
2020-08-19 04:09:02 +00:00
parent ac56977c5f
commit 4826150116

View File

@@ -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}"