diff options
author | Roy Li <rongqing.li@windriver.com> | 2013-12-05 09:08:49 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-09 18:01:38 +0000 |
commit | 03c5f39b4d7dd8c81e0a130b7d5884e5af039a24 (patch) | |
tree | 0f9445904c626f16dcad7a9a965d3846d5c19395 /meta/classes/image.bbclass | |
parent | aca3d0bfd8335b7fd293d81c0647bf72b4de23d3 (diff) | |
download | openembedded-core-03c5f39b4d7dd8c81e0a130b7d5884e5af039a24.tar.gz openembedded-core-03c5f39b4d7dd8c81e0a130b7d5884e5af039a24.tar.bz2 openembedded-core-03c5f39b4d7dd8c81e0a130b7d5884e5af039a24.zip |
buildhistory.bbclass/image.bbclass: remove obsolete codes
After 1b8e4abd2d9c0 [bitbake.conf/package: Collapse PKGDATA_DIR into
a single machine specific directory], oe-pkgdata-util does not use
target_suffix parameter, so do not need to loop the vendor
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index cc65e3566d..168f283696 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -506,9 +506,7 @@ rootfs_install_complementary() { if [ "$GLOBS" != "" ] ; then # Use the magic script to do all the work for us :) : > ${WORKDIR}/complementary_pkgs.txt - for vendor in '${TARGET_VENDOR}' ${MULTILIB_VENDORS} ; do - oe-pkgdata-util glob ${PKGDATA_DIR} ${WORKDIR}/installed_pkgs.txt "$GLOBS" >> ${WORKDIR}/complementary_pkgs.txt - done + oe-pkgdata-util glob ${PKGDATA_DIR} ${WORKDIR}/installed_pkgs.txt "$GLOBS" >> ${WORKDIR}/complementary_pkgs.txt # Install the packages, if any sed -i '/^$/d' ${WORKDIR}/complementary_pkgs.txt |