diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2019-11-07 00:44:35 +0100 |
---|---|---|
committer | Andreas Oberritter <obi@opendreambox.org> | 2020-07-02 15:10:00 +0200 |
commit | 85a6872ed26abb917cbb0145e95c49c739554306 (patch) | |
tree | 2ab7c6401e9e4c9b5ec781344a7947910add23f9 | |
parent | 7171bdd22cf9768d76e5eb90dc11186bd3128e17 (diff) | |
download | openembedded-core-contrib-85a6872ed26abb917cbb0145e95c49c739554306.tar.gz |
apt: Install methods to nonarch_libdirobi/zeus
This is where apt expects them.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
-rw-r--r-- | meta/recipes-devtools/apt/apt_1.2.31.bb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-devtools/apt/apt_1.2.31.bb b/meta/recipes-devtools/apt/apt_1.2.31.bb index dc9d8154d0..1c2a2c1c6b 100644 --- a/meta/recipes-devtools/apt/apt_1.2.31.bb +++ b/meta/recipes-devtools/apt/apt_1.2.31.bb @@ -89,15 +89,15 @@ do_install () { install -d ${D}${libdir}/apt install -m 0755 bin/apt-helper ${D}${libdir}/apt - install -d ${D}${libdir}/apt/methods - install -m 0755 bin/methods/* ${D}${libdir}/apt/methods + install -d ${D}${nonarch_libdir}/apt/methods + install -m 0755 bin/methods/* ${D}${nonarch_libdir}/apt/methods - install -d ${D}${libdir}/dpkg/methods/apt + install -d ${D}${nonarch_libdir}/dpkg/methods/apt for f in desc.apt names; do - install -m 0644 ${S}/dselect/$f ${D}${libdir}/dpkg/methods/apt + install -m 0644 ${S}/dselect/$f ${D}${nonarch_libdir}/dpkg/methods/apt done for f in install setup update; do - install -m 0755 ${S}/dselect/$f ${D}${libdir}/dpkg/methods/apt + install -m 0755 ${S}/dselect/$f ${D}${nonarch_libdir}/dpkg/methods/apt done if ${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'true', 'false', d)}; then @@ -149,10 +149,10 @@ RRECOMMENDS_${PN}_class-native = "" RPROVIDES_${PN}-opkg = "opkg" -FILES_${PN} += "${libdir}/dpkg ${systemd_system_unitdir}/apt-daily.service" -FILES_${PN}-dselect = "${libdir}/dpkg/methods/apt" +FILES_${PN} += "${nonarch_libdir}/apt ${systemd_system_unitdir}/apt-daily.service" +FILES_${PN}-dselect = "${nonarch_libdir}/dpkg/methods/apt" FILES_${PN}-opkg = "${bindir}/apt-opkg" -FILES_${PN}-transport-https = "${libdir}/apt/methods/https" +FILES_${PN}-transport-https = "${nonarch_libdir}/apt/methods/https" FILES_${PN}-utils = "${bindir}/apt-extracttemplates \ ${bindir}/apt-ftparchive \ ${bindir}/apt-sortpkgs" |