diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-16 11:31:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-16 12:52:10 +0100 |
commit | f139832667058ee9dc0f4f03733d697bb0179981 (patch) | |
tree | cc31ad9b810f23d97990a7e1e5fa60cb053d72cf /meta/recipes-core/feed-config | |
parent | d431ef2a30c038573c9ee7ec7ab8009c6e2ab113 (diff) | |
download | poky-f139832667058ee9dc0f4f03733d697bb0179981.tar.gz |
opkg-config-base/poky-feed-config-opkg: Always use ALL_MULTILIB_PACKAGE_ARCHS to build arch list
We need consistent configuration files for opkg so we might as well always use
the full list. This is equal to PACKAGE_ARCHS in the non-multilib case.
This fixes various multilib failures with ipk multilibs.
(From OE-Core rev: bc85abc5013d0c831cc3c3823df45536c293aaba)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/feed-config')
-rw-r--r-- | meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb b/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb index fc223c993b..14f1d4194a 100644 --- a/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb +++ b/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "Poky example feed configuration" | 1 | DESCRIPTION = "Poky example feed configuration" |
2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
4 | PR = "r1" | 4 | PR = "r2" |
5 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 5 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
6 | INHIBIT_DEFAULT_DEPS = "1" | 6 | INHIBIT_DEFAULT_DEPS = "1" |
7 | 7 | ||
@@ -14,7 +14,7 @@ do_compile() { | |||
14 | archconf=${S}/${sysconfdir}/opkg/arch.conf | 14 | archconf=${S}/${sysconfdir}/opkg/arch.conf |
15 | 15 | ||
16 | rm -f $archconf | 16 | rm -f $archconf |
17 | ipkgarchs="${PACKAGE_ARCHS}" | 17 | ipkgarchs="${ALL_MULTILIB_PACKAGE_ARCHS}" |
18 | priority=1 | 18 | priority=1 |
19 | for arch in $ipkgarchs; do | 19 | for arch in $ipkgarchs; do |
20 | echo "arch $arch $priority" >> $archconf | 20 | echo "arch $arch $priority" >> $archconf |