diff options
author | Alex Franco <alejandro.franco@linux.intel.com> | 2015-08-26 16:57:34 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-29 13:38:05 +0100 |
commit | 9b6bf6a41f630967c92dbc6644542943ff5f2305 (patch) | |
tree | 4b59e00ab785d1958a074072f9f53df92291ee86 /meta/classes/license.bbclass | |
parent | 013f762327bd1477ad4550f4728683f90a340844 (diff) | |
download | poky-9b6bf6a41f630967c92dbc6644542943ff5f2305.tar.gz |
Empty image: package list splitting and iteration
A few short fixes to splitting/iteration done over package lists
in license.bbclass, package_manager.py and rootfs.py.
[YOCTO #7664]
(From OE-Core rev: a902e98c5938f52ec960e0518e0ceaf8f5ee610c)
Signed-off-by: Alex Franco <alejandro.franco@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/license.bbclass')
-rw-r--r-- | meta/classes/license.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index 32e172afc7..c616a20121 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass | |||
@@ -39,7 +39,7 @@ python license_create_manifest() { | |||
39 | return 0 | 39 | return 0 |
40 | 40 | ||
41 | pkg_dic = {} | 41 | pkg_dic = {} |
42 | for pkg in image_list_installed_packages(d).split("\n"): | 42 | for pkg in image_list_installed_packages(d).splitlines(): |
43 | pkg_info = os.path.join(d.getVar('PKGDATA_DIR', True), | 43 | pkg_info = os.path.join(d.getVar('PKGDATA_DIR', True), |
44 | 'runtime-reverse', pkg) | 44 | 'runtime-reverse', pkg) |
45 | pkg_name = os.path.basename(os.readlink(pkg_info)) | 45 | pkg_name = os.path.basename(os.readlink(pkg_info)) |