diff options
author | Richard Purdie <richard@openedhand.com> | 2008-05-21 13:17:53 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-05-21 13:17:53 +0000 |
commit | fe1c0754111169b0a6e6b64c2843eb9be815afc0 (patch) | |
tree | 75fea298a328ef6c085f852a3151ecdd1e89c1c7 /meta/classes | |
parent | 831cf524fca592d8e4b7df033c0e13859d82b9ae (diff) | |
download | openembedded-core-fe1c0754111169b0a6e6b64c2843eb9be815afc0.tar.gz openembedded-core-fe1c0754111169b0a6e6b64c2843eb9be815afc0.tar.bz2 openembedded-core-fe1c0754111169b0a6e6b64c2843eb9be815afc0.zip |
rootfs_deb.bbclass: Use DPKG_ARCH for the architecture field, not TARGET_ARCH since it breaks x86
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4520 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/rootfs_deb.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass index eb08f4ace4..1b1fa63e77 100644 --- a/meta/classes/rootfs_deb.bbclass +++ b/meta/classes/rootfs_deb.bbclass @@ -42,7 +42,7 @@ fakeroot rootfs_deb_do_rootfs () { tac ${STAGING_ETCDIR_NATIVE}/apt/sources.list.rev > ${STAGING_ETCDIR_NATIVE}/apt/sources.list cat "${STAGING_ETCDIR_NATIVE}/apt/apt.conf.sample" \ - | sed -e 's#Architecture ".*";#Architecture "${TARGET_ARCH}";#' \ + | sed -e 's#Architecture ".*";#Architecture "${DPKG_ARCH}";#' \ > "${STAGING_ETCDIR_NATIVE}/apt/apt-rootfs.conf" export APT_CONFIG="${STAGING_ETCDIR_NATIVE}/apt/apt-rootfs.conf" |