diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2015-11-02 15:12:50 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:28:55 +0000 |
commit | 712c4ccb0c5bede4f7199dabb5a75d0fabeb0564 (patch) | |
tree | f16fa1171a40c625eab30abbadd83cff63ae2aca | |
parent | e20bc06365242a526e1b755b8b3eded433cb3454 (diff) | |
download | openembedded-core-712c4ccb0c5bede4f7199dabb5a75d0fabeb0564.tar.gz openembedded-core-712c4ccb0c5bede4f7199dabb5a75d0fabeb0564.tar.bz2 openembedded-core-712c4ccb0c5bede4f7199dabb5a75d0fabeb0564.zip |
default-distrovars: remove less from WHITELIST_GPL-3.0
As oe-core commit 37c8c2c5f6937520eaf9f5d981f9315e36eba4bb and
fa7bdf96b8eb8b5078db38249c5c60ec511c35c6 said, Mark Nudelman
(author of less) has given permission to utilize a generic 2-clause
BSD, so we remove it from WHITELIST_GPL-3.0 which caused
a QA Warning while INCOMPATIBLE_LICENSE += "GPLv3 LGPLv3 GPLv3+ LGPLv3+"
...
|NOTE: INCLUDING less as buildable despite INCOMPATIBLE_LICENSE
because it has been whitelisted
...
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/conf/distro/include/default-distrovars.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index 836690492b..8866f0d2f8 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc @@ -24,7 +24,7 @@ IMAGE_FEATURES ?= "" # This is a list of packages that are used by the build system to build the distribution, they are not # directly part of the distribution. HOSTTOOLS_WHITELIST_GPL-3.0 ?= "" -WHITELIST_GPL-3.0 ?= "less" +WHITELIST_GPL-3.0 ?= "" LGPLv2_WHITELIST_GPL-3.0 ?= "libassuan gnutls libtasn1 libidn" COMMERCIAL_AUDIO_PLUGINS ?= "" |