diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2018-01-08 17:33:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-10 22:14:52 +0000 |
commit | 6b25c76da51180da7c97308d5f8f5558c68cdca3 (patch) | |
tree | cb51c800a365a1495f2d259b7650395dcf22f625 | |
parent | 087510795331fa21ff52f103269087c06b1660fa (diff) | |
download | openembedded-core-6b25c76da51180da7c97308d5f8f5558c68cdca3.tar.gz openembedded-core-6b25c76da51180da7c97308d5f8f5558c68cdca3.tar.bz2 openembedded-core-6b25c76da51180da7c97308d5f8f5558c68cdca3.zip |
multilib.bbclass: remove invalid PACKAGE_INSTALL
The PACKAGE_INSTALL is only used by image recipe, the previous code had
handled it in "if bb.data.inherits_class('image', d)", handle it again
doesn't make any sense (there is no PACKAGE_INSTALL for non-image
recipe), so remove it.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/multilib.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index 0570ea8581..dc0868be3e 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass @@ -112,7 +112,6 @@ python __anonymous () { clsextend.map_packagevars() clsextend.map_regexp_variable("PACKAGES_DYNAMIC") - clsextend.map_variable("PACKAGE_INSTALL") clsextend.map_variable("INITSCRIPT_PACKAGES") clsextend.map_variable("USERADD_PACKAGES") clsextend.map_variable("SYSTEMD_PACKAGES") |