From: Daniel McGregor Date: Thu, 14 Jan 2016 20:47:04 +0000 (-0600) Subject: opkg-utils: store alternatives in nonarch_libdir X-Git-Tag: 2016-4~1502 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=0afe5f74337dbfd302c221bf3c0fa9a22e6e7987;p=openembedded-core.git opkg-utils: store alternatives in nonarch_libdir opkg-utils-native stores alternative info in /usr/lib, so do the same on the target. Signed-off-by: Daniel McGregor Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index b242d1f3fb..1bc561c08a 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb @@ -34,7 +34,7 @@ do_install() { do_install_append_class-target() { if [ -e "${D}${bindir}/update-alternatives" ]; then - sed -i ${D}${bindir}/update-alternatives -e 's,/usr/bin,${bindir},g; s,/usr/lib,${libdir},g' + sed -i ${D}${bindir}/update-alternatives -e 's,/usr/bin,${bindir},g; s,/usr/lib,${nonarch_libdir},g' fi }