diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-03-31 11:13:06 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-01 07:14:30 +0100 |
commit | efe73cb5a74099ba2fab42a84fee9b825dd6adbd (patch) | |
tree | c578d2f961b33e1567a0958f542482604fd3c5ed /meta/classes/multilib.bbclass | |
parent | 5293b834c1f5bfdf45d86485cd63b98c6b1bce5c (diff) | |
download | poky-efe73cb5a74099ba2fab42a84fee9b825dd6adbd.tar.gz |
base.bbclass: drop obsolete HOSTTOOLS_WHITELIST_GPL-3.0
base.bbclass sets 'check_license' to False (and therefore skips
license checking completely) for native, nativesdk, etc recipes
(ie anything which could potentially be classed as "host tools"),
so supporting a dedicated whitelist of GPLv3 host tools is not
necessary.
(From OE-Core rev: 8fc8b60005e7641861324c8541fb45058e7aab8e)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/multilib.bbclass')
-rw-r--r-- | meta/classes/multilib.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index 052f911ac2..d5a31287a8 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -59,7 +59,7 @@ python multilib_virtclass_handler () { | |||
59 | e.data.setVar("OVERRIDES", e.data.getVar("OVERRIDES", False) + override) | 59 | e.data.setVar("OVERRIDES", e.data.getVar("OVERRIDES", False) + override) |
60 | 60 | ||
61 | # Expand the WHITELISTs with multilib prefix | 61 | # Expand the WHITELISTs with multilib prefix |
62 | for whitelist in ["HOSTTOOLS_WHITELIST_GPL-3.0", "WHITELIST_GPL-3.0", "LGPLv2_WHITELIST_GPL-3.0"]: | 62 | for whitelist in ["WHITELIST_GPL-3.0", "LGPLv2_WHITELIST_GPL-3.0"]: |
63 | pkgs = e.data.getVar(whitelist, True) | 63 | pkgs = e.data.getVar(whitelist, True) |
64 | for pkg in pkgs.split(): | 64 | for pkg in pkgs.split(): |
65 | pkgs += " " + variant + "-" + pkg | 65 | pkgs += " " + variant + "-" + pkg |