diff options
author | André Draszik <git@andred.net> | 2015-07-24 13:48:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-31 10:31:01 +0100 |
commit | 48e04a93c357fb494470d2f175e644a6f43a7d63 (patch) | |
tree | ad02fc36649de6f4f725bda24622042f869002c1 /meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | |
parent | 48d735a8938ec7c49754a57019182ebcd9a2d8b6 (diff) | |
download | openembedded-core-contrib-48e04a93c357fb494470d2f175e644a6f43a7d63.tar.gz |
opkg-utils: use ${bindir} instead of hardcoding /usr/bin
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/opkg-utils/opkg-utils_git.bb')
-rw-r--r-- | meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index 2f66632b66b..5f518d22d1c 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb @@ -28,6 +28,10 @@ do_install() { oe_runmake PREFIX=${prefix} DESTDIR=${D} install } +do_install_append_class-target() { + sed -i ${D}${bindir}/update-alternatives -e 's,/usr/bin,${bindir},g; s,/usr/lib,${libdir},g' +} + PACKAGES =+ "update-alternatives-opkg" FILES_update-alternatives-opkg = "${bindir}/update-alternatives" RPROVIDES_update-alternatives-opkg = "update-alternatives update-alternatives-cworth" |