diff options
author | Daniel McGregor <daniel.mcgregor@vecima.com> | 2016-01-14 14:47:04 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 17:37:23 +0000 |
commit | 0afe5f74337dbfd302c221bf3c0fa9a22e6e7987 (patch) | |
tree | c865da610f1e97e6640bf6eb07734848f47c1d7e /meta/recipes-devtools/opkg-utils | |
parent | d0dfd7bf9b2d6fb269f4d9b62263fd7ccc805fde (diff) | |
download | openembedded-core-contrib-0afe5f74337dbfd302c221bf3c0fa9a22e6e7987.tar.gz |
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 <daniel.mcgregor@vecima.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/opkg-utils')
-rw-r--r-- | meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index b242d1f3fbd..1bc561c08a3 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 } |