diff options
author | Denys Dmytriyenko <denys@ti.com> | 2020-08-19 04:09:02 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2020-08-19 16:00:32 +0000 |
commit | 4826150116883b34e504b315c52b36479b6fc8d9 (patch) | |
tree | f52b8441ae8a22860058aca0d0c967514ede6937 /recipes-bsp | |
parent | ac56977c5f2febdc28cad7825fb26d7a5f956b76 (diff) | |
download | meta-ti-4826150116883b34e504b315c52b36479b6fc8d9.tar.gz meta-ti-4826150116883b34e504b315c52b36479b6fc8d9.tar.bz2 meta-ti-4826150116883b34e504b315c52b36479b6fc8d9.zip |
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>
Diffstat (limited to 'recipes-bsp')
-rw-r--r-- | recipes-bsp/pru/pru-icss_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/pru/pru-icss_git.bb b/recipes-bsp/pru/pru-icss_git.bb index eda235dec..c74a15dc8 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}" |