diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-11-08 14:19:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-08 14:32:45 +0000 |
commit | 7736862a74c92fe1afe42e170822be13117575c2 (patch) | |
tree | cc41e1e2adbff0fecb70e786cde9d9d52132abb7 /meta/classes/rootfs_ipk.bbclass | |
parent | 1f4028337d5e288e239f44ef34e1d707b785273e (diff) | |
download | openembedded-core-7736862a74c92fe1afe42e170822be13117575c2.tar.gz openembedded-core-7736862a74c92fe1afe42e170822be13117575c2.tar.bz2 openembedded-core-7736862a74c92fe1afe42e170822be13117575c2.tar.xz openembedded-core-7736862a74c92fe1afe42e170822be13117575c2.zip |
multilib: Drop MULTILIB_IMAGE_INSTALL
There should just be a single IMAGE_INSTALL variable. If the package
backends need this split into different multilib components they should
be responsible for doing this, not the user.
This commit removes the MULTILIB_IMAGE_INSTALL variable.
[YOCTO #1564]
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rootfs_ipk.bbclass')
-rw-r--r-- | meta/classes/rootfs_ipk.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass index 3094c1ac5..ffc4a72c0 100644 --- a/meta/classes/rootfs_ipk.bbclass +++ b/meta/classes/rootfs_ipk.bbclass @@ -58,8 +58,7 @@ fakeroot rootfs_ipk_do_rootfs () { export INSTALL_ROOTFS_IPK="${IMAGE_ROOTFS}" export INSTALL_CONF_IPK="${IPKGCONF_TARGET}" - export INSTALL_PACKAGES_NORMAL_IPK="${PACKAGE_INSTALL}" - export INSTALL_PACKAGES_MULTILIB_IPK="${MULTILIB_PACKAGE_INSTALL}" + export INSTALL_PACKAGES_IPK="${PACKAGE_INSTALL}" package_install_internal_ipk |